Does anyone know how to use the .msg tag and get an image to show up on an e-mail?
I'm trying to set up a 'tell-a-friend' form that includes an image in the e-mail.
My code currently looks like this
<?
$msg = "Please click on http://www.oakandacornpublishing.com/cd ... ntro.mp3\n";
$msg .= "I found the perfect stocking stuffer!\n\n";
$msg .= "Additional Note from $_POST[sender_email]:\n";
$msg .= "$_POST[message]\n";
$to = "$_POST[receiver_email]";
$subject = "The Ancient Spruce and the Christmas Moose";
$mailheaders = "From: $_POST[sender_email]\n";
$mailheaders .= "Reply-To: $_POST[sender_email]\n";
mail($to, $subject, $msg, $mailheaders);
?>
In the .msg, I'm trying to have it put an image after the "I found the Perfect Stocking Stuffer" line
Any help or reference points would be greatly appreciated.
thanks
-Terry
e-mail form help
Moderator: General Moderators