web-dev-qa-db-ja.com

PHPMailerでのSMTP connect()の失敗エラー

私はPHP=を初めて使用するので、PHPを使用してメールを送信したいと思います。メールを受け入れる連絡先フォームがあるので、私に連絡をとった人のメールであるため、メールが送信されます。 。 https://github.com/PHPMailer/PHPMailer/tree/master のPHPMailerライブラリを使用しています。使用しているコードスニペットは次のとおりです。

<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();  

$mail->SMTPSecure = 'tls';

$mail->Host     = "resolver1.opendns.com"; // this SMTP server of my machine
//$mail->Host     = "208.67.222.222";//ip ; which one to use the resolver1.opendns.com or 208.67.222.222 ???

$mail->From     = "[email protected];//email id of the person 

$mail->AddAddress("[email protected]");//my email id

$mail->Subject  = "First PHPMailer Message";
$mail->Body     = "Hi! \n\n This is my first e-mail sent through PHPMailer.";
$mail->WordWrap = 50;

if(!$mail->Send()) 
{
  echo 'Message was not sent.';
  echo 'Mailer error: ' . $mail->ErrorInfo;
}  
else 
{
  echo 'Message has been sent.';
}
?> 

「メッセージが送信されませんでした。メーラーエラー:SMTP connect()が失敗しました。」というエラーが表示されます。何が問題なのかわかりません。 $ mail-> Host = "";これが何を表すのかコメントしてください??

6
Datta Dhonde

追加 $mail->SMTPDebug = 1;と問題のデバッグを試みます。

23
Mayank Sharma

@joydesignerが非常によく例を示しているように、SMTP経由で接続するには、hostname, username and passwordを渡す必要があります。その後、接続してメールを送信します。

$mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup server
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'jswan';                            // SMTP username
$mail->Password = 'secret';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // tls or ssl connection as req

ここでは、Host情報のみが渡されたことがわかります。plsはusername & passwordも追加して、1回試してください。

また、サーバーでTLS/SSL PORTが開いていることを確認してください。

確認する:

telnet resolver1.opendns.com 25
4
user2865746

多分それはあなたの設定の問題です。

phpmailer構成の例は次のとおりです。

<?php
 require 'class.phpmailer.php';

 $mail = new PHPMailer;

 $mail->isSMTP();                                      // Set mailer to use SMTP
 $mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup server
 $mail->SMTPAuth = true;                               // Enable SMTP authentication
 $mail->Username = 'jswan';                            // SMTP username
 $mail->Password = 'secret';                           // SMTP password
 $mail->SMTPSecure = 'tls';                            // Enable encryption, 'ssl' also accepted

 $mail->From = '[email protected]';
 $mail->FromName = 'Mailer';
 $mail->addAddress('[email protected]', 'Josh Adams');  // Add a recipient
 $mail->addAddress('[email protected]');               // Name is optional
 $mail->addReplyTo('[email protected]', 'Information');
 $mail->addCC('[email protected]');
 $mail->addBCC('[email protected]');

 $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';

ここで$ mail-> Hostはsmtpメールサーバーです。通常はsmtpで始まります。

1
joydesigner

Resolver1.opendns.comのtcpポート25を確認してください。sendmailや一部のMTAなどのstmpdがブロックされているか、起動していないようです。

telnet resolver1.opendns.comを試してください25

tcpポート25が開いていないことがわかります。

0
Chair