Try getting rid of the stripslashes, or if you need to remove them, add an
additional "\n" to the message after the strip slashes, like so:
if(mail("[EMAIL PROTECTED]","Added To Mailing
List",stripslashes($message)."\n",$from) == false) die('failed');
Also, see http://www.php.net/manual/en/func
$from = "From: ".$email."\n";
$from .= "Reply-to: ".$email."\n";
$message = "The following person has been added to the Mailing
List.\n\n";
$message .= $name." (".$email.") from ".$city." has been added to the
mailing list.";
if(mail("[EMAIL PROTECTED]","Added To Mailing
List",stripslashes($messag
Details?
How are you calling the mail function?
At 11:59 PM 4/4/2004, Jonathan Villa wrote:
For some reason mail is being sent from nobody to nobody every time. I
have tried hardcoding the sendmail path, which is the default anyway,
and it still doesn't work?
Has anyone encountered this before?
-
3 matches
Mail list logo