我正在使用php和邮件功能,但我遇到了这个错误:
警告:mail()[function.mail]:SMTP服务器响应:550第78行的C:\ inetpub \ vhosts \ saj.ir \ subdomains \ lms \ httpdocs \ registration \ include.php中没有此类用户< / p>
我的代码是:
$srting= "testing email";
ini_set("SMTP","webmail.saj.ir");
ini_set("sendmail_from","info@saj.ir");
$headers= 'MIME-Version: 1.0' . "\r\n";
$headers.= 'Content-type: text/html; charset=utf8' . "\r\n";
$headers .= 'From: www.saj.ir' . "\r\n";
mail("ayoob.khodadadi@gmail.com","class list",$srting,$header);
我不知道 谢谢。
我将
webmail.saj.ir
更改为http://ns1.easysoftco.com
,现在我面对此消息: 无法连接到“http://ns1.easysoftco.com”端口25上的邮件服务器,验证您的“SMTP”和“smtp_port”
哦,我发现了我的问题:我正在使用寡妇和IIS 7.5 有没有办法在IIS 7.5中发送邮件
答案 0 :(得分:2)
您已定义$headers
并且您正在使用$header
$srting= "testing email";
ini_set("SMTP","http://ns1.easysoftco.com");
ini_set("sendmail_from","info@saj.ir");
$headers= 'MIME-Version: 1.0' . "\r\n";
$headers.= 'Content-type: text/html; charset=utf8' . "\r\n";
$headers .= 'From: www.saj.ir' . "\r\n";
mail("salman_k18@yahoo.com","class list",$srting,$headers);