gpt4 book ai didi

php - 从本地主机发送邮件到 Gmail

转载 作者:太空宇宙 更新时间:2023-11-03 14:48:25 24 4
gpt4 key购买 nike

我如何让 gmail 接受来自本地主机的 phpmailer 并且不阻止登录?

我该如何修复这个错误信息

无法发送邮件。邮件程序错误:SMTP connect() 失败。

<?php
require 'PHPMailer-master\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 = 'my@gmail.com'; // SMTP username
$mail->Password = 'valid'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to

$mail->setFrom('my@gmail.com', 'me');
// Add a recipient
$mail->addAddress('their@gmail.com'); // Name is optional
$mail->addReplyTo('my@gmail.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');


$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';
}

?>

最佳答案

似乎未在端口 587 上建立与 Google SMTP 的连接。您是否处于端口 587 被阻止的网络中。您可以使用此 telnet 命令简单地检查是否可以建立连接:

远程登录 smtp.gmail.com 587

Snapshot

您将收到如快照所示的响应

Windows 中的 Telnet 客户端默认是禁用的,需要通过 Windows 的程序和功能启用:

控制面板 --> 程序 --> 打开或关闭 Windows 功能,在弹出的对话框中勾选“Telnet 客户端”。

或者您可以下载Putty

关于php - 从本地主机发送邮件到 Gmail,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36620434/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com