only I would like to build a seccond mail-function
in it so the sender gets a copy from his comment.
Code: Select all
<?php
if(isset($_POST['submit'])){
$to = "jan-molendijk@live.nl"; // this is your Email address
$from = $_POST['email']; // this is the sender's Email address
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$subject = "Form submission";
$subject2 = "Copy of your form submission";
$message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['message'];
$message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];
$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
// You can also use header('Location: thank_you.php'); to redirect to another page.
}
?>
Code: Select all
<form id="frmEnquiry" action="" method="post" enctype='multipart/form-data'>
<form action="" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_name"><br>
Email: <input type="text" name="email"><br>
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<div id="mail-status"></div>
<div>
<input
type="text" name="userName" id="userName"
class="demoInputBox" placeholder="Name">
</div>
<div>
<input type="text" name="userEmail" id="userEmail"
class="demoInputBox" placeholder="Email">
</div>
<div>
<input type="text" name="subject" id="subject"
class="demoInputBox" placeholder="Subject">
</div>
<div>
<textarea name="content" id="content" class="demoInputBox"
cols="60" rows="6" placeholder="Content"
> (keep on-top) Reference-ID: <?php echo $_GET['reference-id'] ?>)
</textarea>
</div>
<div>
<label>Attachment</label><br /> <input type="file"
name="attachment[]" class="demoInputBox" multiple="multiple">
</div>
<div><br>
<h2>save your Reference-ID: <?php echo $_GET['reference-id'] ?></h2><br>
<input type="submit" value="Send" class="btnAction" />
<br><br>
</div>
</form></form>
Hope you can help me ????