wob*_*ano 3 php smtp phpmailer
美好的一天!
我试图让我的phpmailer在共享主机中工作,我(freehostia.com)总是收到此错误。我的gmail用户名和密码是正确的,其余设置如下所示:
$mail = new PHPMailer;
$mail->isSMTP();
$mail->SMTPDebug = 2;
$mail->Host = 'tls://smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'mymail@gmail.com'; // SMTP username
$mail->Password = 'mypassword'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->setFrom('mymail@gmail.com', 'ASAPHOT Administrator'); // Add a recipient
$mail->addAddress('sorianorobertc@gmail.com'); // Name is optional
$mail->addReplyTo('mymail@gmail.com', 'ASAPHOT Administrator');
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'it works';
$mail->Body = 'it works';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
if (!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
Run Code Online (Sandbox Code Playgroud)
openssl在php.ini也未注释。我在这里想念什么吗?谢谢。
完整的错误消息:
Connection: opening to smtp.gmail.com:587, timeout=300, options=array ()
SMTP ERROR: Failed to connect to server: Permission denied (13)
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Message could not be sent.Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Run Code Online (Sandbox Code Playgroud)
让我们首先得到答案!尝试使用以下命令:
$ getsebool httpd_can_sendmail
Run Code Online (Sandbox Code Playgroud)
如果显示: httpd_can_sendmail --> off
用这个打开它:
$ sudo setsebool -P httpd_can_sendmail 1
Run Code Online (Sandbox Code Playgroud)
然后尝试再次发送电子邮件。
这个解决方案来自这个很棒的页面。
正如本文指出的那样,您可能还需要尝试sudo setsebool -P httpd_can_network_connect 1。对于由DigitalOcean托管的CentOS 7虚拟机,这不是必需的。
我遇到的问题是无法从Drupal网站发送带有SMTP身份验证支持模块的电子邮件,该模块依赖于下面的PHPMailer。使用的SMTP服务器是Google。
顺便说一句,我怀疑这是OpenSSL证书问题,做了一些测试,但是没有运气。因此,通过将$SMTPDebug级别从PHPMailer源代码设置为2,我能够捕获到“权限被拒绝(13)”错误消息。
kau*_*hik -2
use this
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "ssl://smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port
Run Code Online (Sandbox Code Playgroud)
如果这不起作用,请尝试以下 php 代码。
邮件($收件人,$主题,$消息);