欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

关于用phpmailer 发邮件的有关问题

程序员文章站 2022-05-23 20:55:43
...
关于用phpmailer 发邮件的问题
小弟刚接触php不久,试着想用phpmailer 发送邮件,但是得到了以下的error message.. The following From address failed: [email protected]

以下是代码,本人学习php时间不长,所以水平不高,希望各位高手能多多帮忙,谢谢大家

require( "class.phpmailer.php ");
$mail = new PHPMailer();
$mail-> IsSMTP(); // telling the class to use SMTP
$mail-> Host = "smtp.163.com "; // SMTP server
$mail-> SetLanguage( "en ", "./phpmailer/language/ ");
$mail-> From = "[email protected] ";
$mail-> AddAddress( "[email protected] ");

$mail-> Subject = "First PHPMailer Message ";
$mail-> Body = "Hi! \n\n This is my first e-mail sent through PHPMailer. ";
$mail-> WordWrap = 50;

if(!$mail-> Send())
{
echo 'Message was not sent. ';
echo 'Mailer error: ' . $mail-> ErrorInfo;
}
else
{
echo 'Message has been sent. ';
}
?>

------解决方案--------------------
error message.. The following From address failed: [email protected]

没有这个EMAIL地址嘛
关于用phpmailer 发邮件的有关问题

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频