Hello, I have a script set up like this (simplified):
$vondu = "turtle";
$message = 'This is the message\n
Today we will be serving $vondu\n
Please come.
';
I want to have a mail() command like this in the script:
mail("me@me.com","your message",$message);
But, when I do that, the message appears as:
This is the message\n
Today we will be serving $vondu\n
Please come.
instead of:
This is the message
Today we will be serving turtle
Please come.
How can I get this to work the way I want it to?