将邮件从localhost发送到Gmail

时间:2016-04-14 10:30:16

标签: php email ssl

如何让gmail从localhost接受phpmailer而不是阻止登录?

如何修复此错误消息

无法发送消息.Mailer错误:SMTP连接()失败。

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

   ?>

1 个答案:

答案 0 :(得分:0)

似乎没有在端口587上与Google SMTP建立连接。您是否在端口587被阻止的网络中。您只需使用此telnet命令检查是否可以建立连接:

telnet smtp.gmail.com 587

Snapshot

您将收到快照

中显示的回复

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

控制面板 - &gt;程序 - &gt;打开或关闭Windows功能,在弹出复选标记“Telnet Client”的对话框中。

或者您可以下载Putty