I want to print an image on the reply mail after "thank you" but I can't find out how.
I have prepared a simple form. Can someone give me some hints and tips? Thank you.
The form:
<form action="form_ok.php" method="post" name="form" id="form" >
<br />
Email:
<input name="from" type="text" id="from" value="<?php echo $_GET['from'];?>"/>
<br/>
<input name="Submit" type="submit" value="Send"/>
</form>
the reply form:
<?php
$from = $_REQUEST["from"];
$from = stripslashes($from);
// Send the email.
$body = "Thank you ";
mail("$from,mymail@gmail.com", ' Welcome ', $body, "From: mymail@gmail.com");
?>