我使用PHP和郵件功能,但我面對這樣的錯誤:警告:電子郵件()[function.mail]:SMTP服務器響應:550
Warning: mail() [function.mail]: SMTP server response: 550 No such user here in C:\inetpub\vhosts\saj.ir\subdomains\lms\httpdocs\registration\include.php on line 78
我的代碼是:
$srting= "testing email";
ini_set("SMTP","webmail.saj.ir");
ini_set("sendmail_from","[email protected]");
$headers= 'MIME-Version: 1.0' . "\r\n";
$headers.= 'Content-type: text/html; charset=utf8' . "\r\n";
$headers .= 'From: www.saj.ir' . "\r\n";
mail("[email protected]","class list",$srting,$header);
我不知道 謝謝。
i change
webmail.saj.ir
tohttp://ns1.easysoftco.com
and now i face this message : Failed to connect to mailserver at "http://ns1.easysoftco.com" port 25, verify your "SMTP" and "smtp_port"
哦,我發現我的問題:我使用的寡婦和IIS 7.5
是有辦法的郵件在IIS 7.5
是webmail.saj.ir您可以用作中繼的SMTP服務器?這是在Windows機器上運行嗎? (SMTP ini設置僅適用於Windows) – 2012-04-03 07:19:07
感謝Emil,我將webmail.saj.ir更改爲'http:// ns1.easysoftco.com'。 – aya 2012-04-03 07:29:22