Posts: 135
Name: Baptista
Location: Alvor, Algarve Portugal
|
At the moment I make something like this:
<?php
$content = "
<Ima goes here (The idea is to display the image here on the client email)>
Your Neme: ".$formname.",
Your email: ".$useremail.".
Thank you
";
mail($_POST['email'],'Tittle goes here',$content,"From: $email\nX-Mailer: PHP 4.x");
?>
Then the above line sends the email.
It's this possible, to send the image there or not as I been searching but no luck.
|