Forum Moderators: coopster
$tsubject = "$_POST[subject]";
$ttext = "$_POST[textbody]";
@mail("$_POST[emaildest]", $tsubject, $ttext, "FROM: $_POST[email]");
?>
The script above is a PHP script I want to use for my "Tell a Friend" application. However the script can't send email to Gmail and Yahoo.
What should I change so the script can send email to both Gmail and Yahoo.
Thanks