The problem isn't in the HTML file. As I said before the problem is in line 65 of your modified "send_form_email.php" file.
On line 185 of the HTML file you have this:
Code:
<td valign="top"><label for="email_address">Email Address *</label></td>
which defines the field identifier as "email_address". But in the PHP file on line 65 you have:
Code:
$email_from = $_POST['email']; // required
which is looking for a field labelled as "email". That field doesn't exist so the PHP will fail. You need to change line 65 in the "send_form_email.php" file to the following:
Code:
$email_from = $_POST['email_address']; // required
That is the first problem I noticed so you need to change that and try it. If it still doesn't work we'll need to look further.
Bookmarks