Hi, I have a form which allows the user to tick a checkbox and have a copy sent back to them. This all functions well but I would like to add my logo to this response. I have tried adding the img to the message but this just displays the URL not the image, how do I edit this?
PHP Code:
$messageproper ="\n\n" .
"Name: " .
ucwords($_POST['name']) .
"\n" .
"Email: " .
ucwords($email) .
"\n" .
"Type: " .
ucwords($_POST['type']) .
"\n" .
"Comments: " .
$_POST['message'] .
"\n\n\n\n\n\n\n" .
'<img src="http://www.begraphics.com/images/signature.jpg">' .
"\n\n" ;
$messageproper = trim(stripslashes($messageproper));
mail($mailto, $subject, $messageproper, "From: \"$vname\" <".$_POST['email'].">\nReply-To: \"".ucwords($_POST['name'])."\" <".$_POST['email'].">\nX-Mailer: PHP/" . phpversion() );
if( $selfcopy == "yes" )
mail($email, $subject, $messageproper, "From: \"$vnamereply\" <".$_POST['email'].">\nReply-To: \"".ucwords($_POST['name'])."\" <".$_POST['email'].">" );
Many thanks
Eddie