PHPMailerクラスを使用してSMTP経由でメールを送信しようとしています。私の問題は、最初の試みのため、メールの送信者はoerfect取り組んでいるが、それはエラーを投げ、後続のすべての試行のために:phpmailerが断続的なエラーをスローする:接続されているかどうかを確認中にEOFが見つかりました
SMTP -> NOTICE:
EOF caught while checking if connected
コードを送信する私の電子メールには、次のとおりです。
function sendEmail($toAddress,$fromAddress,$toName,$fromName,$subject,$emailContent,$content_type = false, $attach_path="", $cc = '', $cc_name="")
{
require_once('phpmailer/class.phpmailer.php');
if (empty($content_type)) $content_type = false;
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->SMTPAuth = MY_SMTP_AUTH; // turn on SMTP authentication
$mail->Host = MY_SMTP_HOST_NAME;
if (!empty($this->smtpEncryptionMode))
{
$mail->SMTPSecure= $this->smtpEncryptionMode;
}
if (!empty ($this->smtpPort))
{
$mail->Port = MY_SMTP_PORT;
}
else $mail->Port = 25;
$mail->Username = $this->smtpUserName;
$mail->Password = $this->smtpUserPassword;
$mail->From =$fromAddress;
$mail->FromName = $fromName;
if(is_array($toAddress))
{
foreach($toAddress as $to)
{
$mail->AddAddress($to, "");
}
}
else
{
$mail->AddAddress($toAddress, $toName);
}
$mail->AddReplyTo($fromAddress, $fromName);
$mail->CharSet = 'UTF-8';
$mail->WordWrap = 80; // set word wrap to 80 characters
$mail->IsHTML($content_type); // set email format to basic
$mail->Subject = $subject;
$mail->Body = $emailContent;
//Here it sets other parameters e.g attachment path etc.
$mail->SMTPDebug = true;
$result = $mail->Send();
if($result == false) { $result = $mail->ErrorInfo;echo $result; }// Switch this on when debugging.
return $result;
なぜそれが投げていますすべての連続した試行でエラー?
私はclass.smtp.phpから推測することができるものから、それは実際にsmtp_connectionインスタンスのソケットの状態をチェックする()接続された機能の内側に失敗している、そしてそこにそれがEOFを取得しているということです。
接続自体は確立されていないと思います...しかし、最初のインスタンスではどうなっていますか?
私は** $ mail-> SmtpClose()**を使用してみましたが、それはSMTPサーバ側の問題ではwork.Couldませんでしたか?それをどのように確認できますか? – debaShish