php - Trying to send form data to my email
I have a basic html form on my website and I'm wanting the data entered into the form to be sent to my email once submitted, after submit button pressed I'm taken to the "Sent.html" which just displays a sent message on-screen, but when i check the email account I have not received the email..
HTML Form....
<form name="contactform" method="POST" action="formphp.php">
<table width="450px">
<tr>
<td valign="top">
<label for="name">Name *</label>
</td>
<td valign="top">
<input type="text" name="Name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top"">
<label for="email">Email *</label>
</td>
<td valign="top">
<input type="text" name="Email" maxlength="50" size="30">
</td>
</tr>
<td valign="top">
<label for="subject">Subject *</label>
</td>
<td valign="top">
<input type="text" name="Subject" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="questions">Question/Feedback *</label>
</td>
<td valign="top">
<textarea name="Question" cols="40" rows="5"></textarea>
</td>
</tr>
<tr>
<td colspan="2" class="page_speed_181809701">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
PHP code...
<?php
/* set email */
$myemail = "[email protected]";
/* declare id */
$Name = $_POST['Name'];
$Email = $_POST['Email'];
$subject = $_POST['Subject'];
$Questions = $_POST['Questions'];
/* set subject heading */
$subject = "Subject";
/* Message */
$message = "$Name + $Email + $Questions
";
/* redirect this form after email sent */
header("location: sent.html");
?>
Answer
Solution:
Try using PHPMailer library: https://github.com/PHPMailer/PHPMailer
Answer
Solution:
The issue with your php code is that you never actually sent the email. To send mail in php, you use this syntax:
In your case, you would put the code right after you set your $message, and the code would look like this:
For more info regarding php mail, read here: http://php.net/manual/en/function.mail.php
Answer
Solution:
Add the following code insted of
header("location: sent.html");