Tried that...
this is how my sendmail.php currently looks:
<?php
if(!empty($HTTP_POST_VARS['sender_mail']) || !empty($HTTP_POST_VARS['sender_message']) || !empty($HTTP_POST_VARS['sender_subject']) || !empty($HTTP_POST_VARS['sender_name']) || !empty($HTTP_POST_VARS['sender_company']) || !empty($HTTP_POST_VARS['sender_phone']) || !empty($HTTP_POST_VARS['sender_zip']) || !empty($HTTP_POST_VARS['sender_city']) || !
empty($HTTP_POST_VARS['sender_state']) || !
empty($HTTP_POST_VARS['sender_address']))
{
$to = "
brc@brctwincites.com";
$subject = stripslashes($HTTP_POST_VARS['sender_subject']);
$body = stripslashes($HTTP_POST_VARS['sender_message']);
$body .= "\n\n---------------------------\n";
$body .= "Mail sent by: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$body .= "Company Name: " . $HTTP_POST_VARS['sender_company'] . " \n";
$body .= "Telephone: " . $HTTP_POST_VARS['sender_phone'] . " \n";
$body .= "Address: " . $HTTP_POST_VARS['sender_address'] . " \n";
$body .= "Zip Code: " . $HTTP_POST_VARS['sender_zip'] . " \n";
$body .= "City: " . $HTTP_POST_VARS['sender_city'] . " \n";
$body .= "State: " . $HTTP_POST_VARS['sender_state'] . " \n";
$header = "From: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header .= "Reply-To: " . $HTTP_POST_VARS['sender_name'] . " <" . $HTTP_POST_VARS['sender_mail'] . ">\n";
$header .= "X-Mailer: PHP/" . phpversion() . "\n";
$header .= "X-Priority: 1";
if(mail($to, $subject, $body, $header))
{
echo "output=sent";
} else {
echo "output=error";
}
} else {
echo "output=error";
}
?>
Has anyone had a chance to look at my php.ini? now that i have that test script correctly sending out mail I feel like we are very close and a lot of your original suspicions were within the PHP.ini