关于 php:PHPMailer 错误。在没有连接的情况下调用 Mail() | 珊瑚贝

PHPMailer error. Called Mail() without being connected


大家好,我收到了这个错误,

Message could not be sent.Mailer Error: The following From address failed: hehe.gmail.com : Called Mail() without being connected.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
require ‘/PHPMailer_5.2.4/class.phpmailer.php’;

$mail = new PHPMailer;

$mail->IsSMTP();                                      // Set mailer to use SMTP
$mail->Host = ‘smtp.gmail.com’;  // Specify main and backup server
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = ‘hehe@gmail.com’;                            // SMTP username
$mail->Password = ‘xxx’;                           // SMTP password
$mail->SMTPSecure = ‘ssl’;                            // Enable encryption, ‘ssl’ also accepted
$mail->Port = 465;

$mail->From = ‘hehe@gmail.com’;
$mail->FromName = ‘Mailer’;
$mail->AddAddress(‘hehe@gmail.com’);  // Add a recipient

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->IsHTML(true);                                  // Set email format to HTML

$mail->Subject = ‘Here is the subject’;
$mail->Body    = ‘This is the HTML message body in bold!’;
$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;
   exit;
}

echo ‘Message has been sent’;

我该如何解决?谢谢!

  • 您可以添加 $mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only 以便查看一些 dbug 语句吗?
  • @Jens 你好,给你。 SMTP -> 错误:无法连接到服务器:无法找到套接字传输”ssl” – 您在配置 PHP 时是否忘记启用它? (1302733632)
  • @Jens 我也在使用 WAMP
  • 看这里也许这有帮助。
  • 它仍然没有工作。我不知道为什么。
  • 下次试试。看这里
  • 我刚想到 HTML 发送需要 MsgHTML() 而不是 Body()。试一试。 (注意:您的消息 must 中有 <body><html> 标记)
  • 你为什么用这么旧的版本?获取最新信息。 MsgHTML() 是设置 Body 和 AltBody 的便捷函数;没有 Body()。
  • 这看起来像一个连接级别的问题,所以设置 $mail->SMTPDebug = 4;。也尝试使用 $mail->SMTPSecure = ‘tls’;$mail->Port = 587; 而不是过时的 ssl/465。所有这些都包含在 PHPMailer 文档中的 gmail 示例代码中。
  • 我遇到了同样的错误,结果我必须编辑我的 gmail 帐户权限。尝试启用”访问安全性较低的应用程序”安全设置。
  • @KomalWaseem 他们最近表示这样做是为了加强 gmail 的安全性。
  • @geds13 确保您这样做,尝试登录您的普通 gmail 并查看您可能需要采取的任何步骤,以便您使用您的 gmail 帐户进行 smtp 中继。


您是否启用了通过您的 gmail id 访问安全性较低的应用程序的权限??


在我的情况下,这是因为病毒防护..我禁用了它并检查了它。它有效。


如果您要使用 gmail,则需要使用 TLS,而不是 SSL。下面是一个例子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = ‘html’;
//Set the hostname of the mail server
$mail->Host = ‘smtp.gmail.com’;
// use
// $mail->Host = gethostbyname(‘smtp.gmail.com’);
// if your network does not support SMTP over IPv6
//Set the SMTP port number – 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 587;
//Set the encryption system to use – ssl (deprecated) or tls
$mail->SMTPSecure = ‘tls’;
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication – use full email address for gmail
$mail->Username =“username@gmail.com”;
//Password to use for SMTP authentication
$mail->Password =“yourpassword”;
//Set who the message is to be sent from
$mail->setFrom(‘from@example.com’, ‘First Last’);
//Set an alternative reply-to address
$mail->addReplyTo(‘replyto@example.com’, ‘First Last’);
//Set who the message is to be sent to
$mail->addAddress(‘whoto@example.com’, ‘John Doe’);
//Set the subject line
$mail->Subject = ‘PHPMailer GMail SMTP test’;
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML(file_get_contents(‘contents.html’), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->AltBody = ‘This is a plain-text message body’;
//send the message, check for errors
if (!$mail->send()) {
    echo“Mailer Error:” . $mail->ErrorInfo;
} else {
    echo“Message sent!”;
}

@ref: https://github.com/PHPMailer/PHPMailer/blob/master/examples/gmail.phps


请试试这个

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include“PHPMailer_5.2.4/class.phpmailer.php”; // include the class name
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = ‘ssl’; // secure transfer enabled REQUIRED for GMail
$mail->Host =“smtp.gmail.com”;
$mail->Port = 465; // or 587
$mail->IsHTML(true);
$mail->Username =“gmailusername@gmail.com”;
$mail->Password =“**********”;
$mail->SetFrom(“anyemail@gmail.com”);
$mail->Subject =“Here is the subject”;
$mail->Body =“This is the HTML message body in bold!”;
 if(!$mail->Send()){
    echo“Mailer Error:” . $mail->ErrorInfo;
}
else{
    echo“Message has been sent”;
}
?>

请正确编辑您的 gmail 和密码。

您可以在点击这里查看演示


来源:https://www.codenong.com/25479870/

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?