Sendmail.php sending blank emails

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" );
?>

You are using $message as the mail body, but it is never set.

Should be something like

$message =
'Name: ’ . $name . "
" .
'E-mail: '. $email . "
"
(etc)

Well heres what I came up with

<?php

$name = $_POST ['name'];
$address = $_POST ['address'];
$city = $_POST ['city'];
$state = $_POST ['state'];
$zipcode = $_POST ['zipcode'];
$email = $_POST ['email'];
$comment = $_POST ['comment'];

$to = 'dlaflair01@gmail.com';
$subject = 'Contact from submission';

$msg = "Name: $name\
" . "Street Address: $address\
" . "City: $city\
" . 
"State: $state\
" . "Zip/Area Code: $zipcode\
" . "Email Address: $email\
" . "Comments: $comment\
";
 
mail ($to, $subject, $msg, 'From:' . $email);
header( "Location: http://masterspaswi.com/index.php?option=com_content&view=article&id=53" );

?>

But the Zip and Comment isnt coming through, everything else is though.

Figured it out. Appreciate the help.

What ScallioXTX should work.