我正在尝试使用gmail SMTP设置发送电子邮件。
我在本地主机上试过,它有效。
我下载了phpMailer,在该文件夹中我编写了一个包含以下内容的PHP文件。
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'mygmail@gmail.com'; // SMTP username
$mail->Password = 'mygmailpassword'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->From = 'myfromadress@gmail.com';
$mail->FromName = 'Mailer';
$mail->addAddress('mytoadress.com', 'My name'); // Add a recipient
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$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';
}
它在本地系统中工作,但不在实时服务器中工作。
我正在使用Godaddy的Linux共享托管服务。
我住服务器它抛出以下错误。
Message could not be sent.Mailer Error: SMTP connect() failed.
答案 0 :(得分:0)
我不能对你的问题发表评论,因为我没有足够的证书...所以我必须写一个答案,即使它在技术上不是答案......我前一段时间遇到过类似的问题。这个bug出现在我的代码中。简而言之,打开调试模式,你就会知道gmail拒绝连接的确切原因。
答案 1 :(得分:0)
我和GoDaddy在一起。您无法使用Gmail的SMTP服务器。您需要使用我们的中继服务器。有关详细信息,请查看https://support.godaddy.com/help/article/953/what-is-the-name-of-my-hosting-accounts-relay-server。如果您有其他问题,请随时在Twitter @GoDaddyHelp上与我联系。 ^内特