当前位置:Gxlcms > PHP教程 > phpmail()解决方法

phpmail()解决方法

时间:2021-07-01 10:21:17 帮助过:12人阅读

php mail()

$name = $_POST['name'];
$emial = $_POST['email'];
$feedback = $_POST['feedback'];

$toaddress = '292200196@qq.com';
$subject = 'Feedback from web site';
$mailcontent = "Customer name: $name\n
Customer email: $emial\n
Customer comments:\n$feedback\n";
$fromaddress = 'From: 695565914@qq.com';

mail($toaddress, $subject, $mailcontent, $fromaddress);

?>

php.ini
[mail function]
For Win32 only.
SMTP = smtp.qq.com
smtp_port = 25

For Win32 only.
sendmail_from = 695565914@qq.com

错误提示:
Warning: mail() [function.mail]: SMTP server response: 503 Error: need EHLO and AUTH first ! in D:\wamp\apache\htdocs\test\processfeedback.php on line 14

求解释

------解决方案--------------------
https://code.google.com/a/apache-extras.org/p/phpmailer/downloads/list

人气教程排行