Jump to content

Did They Nerf mail?


DrTrans

Recommended Posts

[script]

if($submit){

ini_set("sendmail_from", "[email protected]");

$message = "

Please contact: $name @ $phone <br>

 

";

$mailsubject = "Call Request from website";

    $headers  = "From: Elitecarolinas.com<$mainemail>\r\n";

    $headers .= 'MIME-Version: 1.0' . "\n";

    $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

    $sendmail = mail($who,$mailsubject,$message,$headers);

echo "<BR/>mail() returned: " . ($sendmail? "TRUE" : "FALSE") . "<BR/>";

echo "$who,  $mainemail";

    die("$name , Your Request has been sent");

}

 

[/script]

 

 

I get a TRUE responce. However no mail to the $Who contact

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/208922-did-they-nerf-mail/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.