Hey all, I have no clue what the reason is. I have double checked my code but it is still sending blank emails.
If anyone can look these 2 codes over and let me know if I am missing something it would be greatly appreciated.
Form
<form enctype="multipart/form-data" method="POST"
action="http://www.masterspaswi.com/sendmail.php">
<input type="hidden" name="acctid" value="kow7vvbra3y2wqtm">
<input type="hidden" name="formid" value="35178">
<input type="hidden" name="required_vars"
value="name,email,">
<table cellspacing="5" cellpadding="5" border="0">
<tr>
<td valign="top">
<b>Name:</b>
</td>
<td valign="top">
<input type="text" name="name"
size="40" value="">
</td>
</tr>
<tr>
<td valign="top">
<b>Address</b>
</td>
<td valign="top">
<input type="text" name="address"
size="40" value="">
</td>
</tr>
<tr>
<td valign="top">
<b>City</b>
</td>
<td valign="top">
<input type="text" name="city"
size="40" value="">
</td>
</tr>
<tr>
<td valign="top">
<b>State/Province</b>
</td>
<td valign="top">
<input type="text" name="state"
size="40" value="">
</td>
</tr>
<tr>
<td valign="top">
<b>Zip Code/Postal Code</b>
</td>
<td valign="top">
<input type="text" name="zip"
size="40" value="">
</td>
</tr>
<tr>
<td valign="top">
<b>Email Address:</b>
</td>
<td valign="top">
<input type="text" name="email"
size="40" value="">
</td>
</tr>
<tr>
<td valign="top">
<b>Questions or Comments?</b>
</td>
<td valign="top">
<textarea name="comments" rows="6"
cols="40"></textarea>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value=" Submit
Form ">
</td>
</tr>
</table>
</form>
sendmail.php
<?
$name = $_GET['name'] ;
$email = $_GET['email'] ;
$address = $_GET['adress'] ;
$city = $_GET['city'] ;
$state = $_GET['state'] ;
$zip = $_GET['zip'] ;
$comments = $_GET['comments'] ;
mail( "dlaflair01@gmail.com", "Contact Form", $message, "From: $email" );
header( "Location: http://masterspaswi.com/index.php?option=com_content&view=article&id=53" );
?>