|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-08-12 05:28 UTC] wckramer at knmg dot nl
I used the following script
<?
print("mail");
mail("me@myhost.com","why stops the script","AARGH");
print("send");
?>
The script doesn't print "mail" or "send" and it doesn't sned the mail.
I realy have the correct smtp server-adres in my php.ini
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 01:00:01 2025 UTC |
Same problem here! Once in a while, some scripts hang....I found out it is just the mail line! It does sometimes work though but not always...really odd. Right now I also get this time out.... You ALWAYS get this timeout when you have an error in the mail syntax. mail("$email", "$subject", $body, "From: me@mydomain.com\nReply-To: $sender\nX-Mailer: PHP/" . phpversion()); Tobi