Re: [PHP] Mail sending from nobody to nobody...

2004-04-05 Thread hitek
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

Re: [PHP] Mail sending from nobody to nobody...

2004-04-05 Thread Jonathan Villa
$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

Re: [PHP] Mail sending from nobody to nobody...

2004-04-05 Thread hitek
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? -

[PHP] Mail sending from nobody to nobody...

2004-04-05 Thread Jonathan Villa
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? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.n