发送邮件在我的机器上成功但使用phpmailer使服务器失败

时间:2013-06-17 09:08:46

标签: email phpmailer php

<?php
date_default_timezone_set('America/Toronto');

require_once('class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded

$mail             = new PHPMailer();

$body             = "gdssdh";
//$body             = eregi_replace("[\]",'',$body);

$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "ssl://smtp.gmail.com"; // SMTP server
$mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "ssl";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 465;                   // set the SMTP port for the GMAIL server
$mail->Username   = "myemail@gmail.com";  // GMAIL username
$mail->Password   = "******";            // GMAIL password

$mail->SetFrom('mysent@gmail.com', 'PRSPS');

//$mail->AddReplyTo("user2@gmail.com', 'First Last");

$mail->Subject    = "PRSPS password";

//$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

$mail->MsgHTML($body);

$address = "mymail@yahoo.co.in";
$mail->AddAddress($address, "user2");

//$mail->AddAttachment("images/phpmailer.gif");      // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}

当我在本地计算机上运行脚本时,我得到了

  

客户 - &gt; SMTP:EHLO localhost CLIENT - &gt; SMTP:AUTH LOGIN CLIENT - &gt;   SMTP:cHV0aGVhLmh1b25nMjAxNEBnbWFpbC5jb20 =客户端 - &gt; SMTP:   UHV0aGVhMDEy客户 - &gt; SMTP:MAIL FROM:CLIENT - &gt; SMTP:RCPT TO:   客户 - &gt; SMTP:数据客户端 - &gt; SMTP:日期:星期一,2013年6月17日04:25:49   -0400客户 - &gt; SMTP:Return-Path:CLIENT - &gt; SMTP:收件人:user2客户端 - &gt; SMTP:来自:PRSPS客户端 - &gt; SMTP:主题:PRSPS密码客户端 - &gt;   SMTP:消息ID:&lt; 405be3508111cd4789653ec34cdfba23 @ localhost&gt;客户    - &GT; SMTP:X-Priority:3 CLIENT - &gt; SMTP:X-Mailer:PHPMailer 5.2.6(https://github.com/PHPMailer/PHPMailer/)CLIENT - &gt; SMTP:   MIME版本:1.0客户端 - &gt; SMTP:Content-Type:multipart / alternative;   客户 - &gt; SMTP:boundary =“b1_405be3508111cd4789653ec34cdfba23”客户端    - &GT; SMTP:内容传输编码:8位客户端 - &gt; SMTP:CLIENT - &gt; SMTP: - b1_405be3508111cd4789653ec34cdfba23客户端 - &gt; SMTP:   内容类型:text / plain; charset = iso-8859-1 CLIENT - &gt; SMTP:   内容传输编码:8位客户端 - &gt; SMTP:CLIENT - &gt; SMTP:gdssdh   客户 - &gt; SMTP:CLIENT - &gt; SMTP:CLIENT - &gt; SMTP:   --b1_405be3508111cd4789653ec34cdfba23客户 - &gt; SMTP:Content-Type:text / html; charset = iso-8859-1 CLIENT - &gt; SMTP:   内容传输编码:8位客户端 - &gt; SMTP:CLIENT - &gt; SMTP:gdssdh   客户 - &gt; SMTP:CLIENT - &gt; SMTP:CLIENT - &gt; SMTP:CLIENT - &gt; SMTP:   --b1_405be3508111cd4789653ec34cdfba23--客户 - &gt; SMTP:CLIENT - &gt; SMTP :.客户 - &gt; SMTP:退出邮件发送!

但是当我在托管

上运行相同的脚本时
  

SMTP - &gt;错误:无法连接到服务器:连接尝试   失败,因为关联方在a之后没有正确回应   一段时间,或建立的连接失败,因为连接   主持人没有回复。 (10060)SMTP Connect()失败。信封   错误:SMTP Connect()失败。

你有任何想法解决这个问题吗?

提前致谢。

1 个答案:

答案 0 :(得分:1)

您的托管可能已使防火墙使用过的端口。尝试使用其他端口(使用其他安全性)设置或联系您的主机。