PHPMailer帮助 - 获取SMTP错误但发送邮件

时间:2014-01-16 17:23:53

标签: forms smtp phpmailer

我马上就把我的头扯掉了......

使用PHPmailer从我的网站发送电子邮件。 我在我的网站上创建了一个HTML表单,那里的值需要转到我的邮箱......你知道 - 标准:)

但我一直收到这个错误: 邮件程序错误:SMTP连接()失败。

当我打开SMTPDEBUG时,它会像这样: SMTP错误:无法连接到服务器:(0)SMTP连接()失败。无法发送消息.Mailer错误:SMTP connect()失败。

主机和端口是正确的,从我的提供商处获取详细信息.. 有什么我缺少的,键入错误或误解?

<?php
  $email = $_REQUEST['email'] ;
  $message = $_REQUEST['message'] ;

  // here we use the php mail function
  // to send an email to:
  // you@yourdomain.com
  mail( "info@recive.com", "Feedback Form Results",$message, "From: $email" );

require 'PHPMailer/class.phpmailer.php';

$mail = new PHPMailer;

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.test.com';                      // Specify main and backup server
$mail->Port = 25;
$mail->SMTPDebug  = 2;  
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'info@recive.com';                            // SMTP username
$mail->Password = 'password';                           // SMTP password
$mail->SMTPSecure = 'ssl';                            // Enable encryption, 'ssl' also accepted

$mail->From = 'info@recive.com';
$mail->FromName = 'Mailer';
//$mail->addAddress('josh@example.net', 'Josh Adams');  // Add a recipient
$mail->addAddress('info@recive.com');               // Name is optional
//$mail->addReplyTo('info@recive.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$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;
   exit;
}

echo 'Message has been sent';

?>

1 个答案:

答案 0 :(得分:0)

根据我的理解,SMTPSecure的'ssl'设置用于直接ssl连接,而'tls'设置用于普通连接,然后使用STARTTLS命令升级到SSL。使用端口25,您需要简单连接,例如'TLS'。