PHPMailer():在未连接的情况下调用Mail() [英] PHPMailer(): Called Mail() without being connected

查看:55
本文介绍了PHPMailer():在未连接的情况下调用Mail()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<?php
//error_reporting(E_ALL);
error_reporting(E_STRICT);
require_once('/PHPMailer/class.phpmailer.php');

$mail=new PHPMailer();
$body='blah body';
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host="127.17.7.4"; // SMTP server
$mail->Port=25;
$mail->SMTPDebug=1;                     // enables SMTP debug information (for testing)
                                               // 1 = errors and messages
                                               // 2 = messages only

$mail->SetFrom('name@zenphoto.com', 'First Last');
$mail->AddReplyTo("name@zenphoto.com","First Last");
$address = "myemail@email.com";  //This will be my email address, that I want to receive the mail on
$mail->AddAddress($address);
$mail->Subject    = "PHPMailer Test Subject via mail(), basic";
$mail->MsgHTML($body);
if(!$mail->Send()) {
    echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>

我正在尝试使用PHPMailer发送邮件,但我不断收到错误消息: 确切的错误消息:

I am trying to send mail with PHPMailer, but I keep getting the error: The exact error message:

SMTP->错误:无法连接到服务器:连接尝试失败,因为一段时间后被连接方未正确响应,或者由于连接的主机未能响应而建立的连接失败. (10060)

SMTP -> ERROR: Failed to connect to server: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (10060)

以下发件人地址失败:name@zenphoto.com:未连接而调用Mail()Mailer错误:以下发件人地址失败:name@zenphoto.com:未连接而调用了Mail()

The following From address failed: name@zenphoto.com : Called Mail() without being connected Mailer Error: The following From address failed: name@zenphoto.com : Called Mail() without being connected

推荐答案

如果使用的是smtp,这是您需要遵循的格式

this is the format you need to follow if you are using smtp

$mail->IsSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtpout.secureserver.net';  // Specify main and backup server
$mail->Port = '80';
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = '';                            // SMTP username
$mail->Password = '';                           // SMTP password
$mail->SMTPSecure = '';                            // Enable encryption, 'ssl' also accepted


$mail->From = '';
$mail->FromName = '';
$mail->AddAddress('abc@gmail.com', '');  // Add a recipient
$mail->AddReplyTo('', 'reply');
//$mail->AddCC('');
$mail->AddBCC('');

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

$mail->Subject = '';
$mail->Body    =  "<!DOCTYPE html>
        <html lang='en-us'>
            <head>
                <meta charset='utf-8'>
                <title></title>

            </head>
            <body>
    <html>";

这篇关于PHPMailer():在未连接的情况下调用Mail()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆