2016-04-06 3 views
0

私はphpmailerので送信3通のメールを作成しようとしているが、私はOutlookでこれらの電子メールを受信して​​成功を持っていないです....Outlookがメッセージ受信しません - phpmailerの

マイコード:

require_once('mail/PHPMailerAutoload.php'); 

$mail = new PHPMailer(); 
$mail->IsSMTP(); 

$mail->SMTPOptions = array(
     'ssl' => array(
      'verify_peer' => false, 
      'verify_peer_name' => false, 
      'allow_self_signed' => true 
     ) 
    ; 

$mail->CharSet = 'UTF-8'; 
$mail->Host = 'mail.myserver.com.br'; 
$mail->SMTPAuth = true; 
$mail->SMTPSecure = 'tls'; 
$mail->Username = '[email protected]'; 
$mail->Password = '******'; //seleciona a porta de envio 
$mail->Port = 587; 

$mail->SMTPDebug = 4; 
$mail->Debugoutput = 'html'; 

$mail->IsHTML(true); 
$mail->From = '[email protected]'; 
$mail->FromName = 'My Server'; 

if($reply != NULL){ 
    $mail->AddReplyTo($reply, $replyNome); 
} 

$mail->Subject = "Subject"; 
$mail->Body = "Test"; //mensagem 
$mail->AddAddress('[email protected]', 'Silvio'); 

if($mail->Send()){ 
    return true; 
}else{ 
    return false; 
} 

私はGmailや他のメールクライアントを利用していますが、見通しにはメッセージが表示されません。 ...ログ下:

Connection: opening to mail.siteparatatuador.com.br:587, timeout=300, options=array ('ssl' => array ('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true,),) 
Connection: opened 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 " 
SMTP -> get_lines(): $data is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 " 
SMTP -> get_lines(): $str is "220-We do not authorize the use of this system to transport unsolicited, " 
SMTP -> get_lines(): $data is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 220-We do not authorize the use of this system to transport unsolicited, " 
SMTP -> get_lines(): $str is "220 and/or bulk e-mail." 
SERVER -> CLIENT: 220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. 
CLIENT -> SERVER: EHLO www.siteparatatuador.com.br 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $str is "250-SIZE 52428800" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800" 
SMTP -> get_lines(): $str is "250-8BITMIME" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME" 
SMTP -> get_lines(): $str is "250-PIPELINING" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING" 
SMTP -> get_lines(): $str is "250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $str is "250-STARTTLS" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250-STARTTLS" 
SMTP -> get_lines(): $str is "250 HELP" 
SERVER -> CLIENT: 250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250-STARTTLS250 HELP 
CLIENT -> SERVER: STARTTLS 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "220 TLS go ahead" 
SERVER -> CLIENT: 220 TLS go ahead 
CLIENT -> SERVER: EHLO www.siteparatatuador.com.br 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $str is "250-SIZE 52428800" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800" 
SMTP -> get_lines(): $str is "250-8BITMIME" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME" 
SMTP -> get_lines(): $str is "250-PIPELINING" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING" 
SMTP -> get_lines(): $str is "250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $str is "250 HELP" 
SERVER -> CLIENT: 250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250 HELP 
Auth method requested: UNKNOWN 
Auth methods available on the server: PLAIN,LOGIN 
Auth method selected: LOGIN 
CLIENT -> SERVER: AUTH LOGIN 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "334 VXNlcm5hbWU6" 
SERVER -> CLIENT: 334 VXNlcm5hbWU6 
CLIENT -> SERVER: Zm9ybXVsYXJpb3NAc2l0ZXBhcmF0YXR1YWRvci5jb20uYnI= 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "334 UGFzc3dvcmQ6" 
SERVER -> CLIENT: 334 UGFzc3dvcmQ6 
CLIENT -> SERVER: JmY7N35lazs/RyNs 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "235 Authentication succeeded" 
SERVER -> CLIENT: 235 Authentication succeeded 
CLIENT -> SERVER: MAIL FROM:<[email protected]> 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 OK" 
SERVER -> CLIENT: 250 OK 
CLIENT -> SERVER: RCPT TO:<[email protected]> 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 Accepted" 
SERVER -> CLIENT: 250 Accepted 
CLIENT -> SERVER: DATA 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "354 Enter message, ending with "." on a line by itself" 
SERVER -> CLIENT: 354 Enter message, ending with "." on a line by itself 
CLIENT -> SERVER: Date: Wed, 6 Apr 2016 19:29:16 +0000 
CLIENT -> SERVER: To: Silvio <[email protected]> 
CLIENT -> SERVER: From: Stavit <[email protected]> 
CLIENT -> SERVER: Subject: Assunto 
CLIENT -> SERVER: Message-ID: <[email protected]> 
CLIENT -> SERVER: X-Mailer: PHPMailer 5.2.14 (https://github.com/PHPMailer/PHPMailer) 
CLIENT -> SERVER: MIME-Version: 1.0 
CLIENT -> SERVER: Content-Type: text/html; charset=UTF-8 
CLIENT -> SERVER: Content-Transfer-Encoding: 8bit 
CLIENT -> SERVER: 
CLIENT -> SERVER: Teste 
CLIENT -> SERVER: 
CLIENT -> SERVER: . 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 OK id=1ant8e-0001Jc-ER" 
SERVER -> CLIENT: 250 OK id=1ant8e-0001Jc-ER 
CLIENT -> SERVER: QUIT 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "221 vps.siteparatatuador.com.br closing connection" 
SERVER -> CLIENT: 221 vps.siteparatatuador.com.br closing connection 
Connection: closed 
Connection: opening to mail.siteparatatuador.com.br:587, timeout=300, options=array ('ssl' => array ('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true,),) 
Connection: opened 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 " 
SMTP -> get_lines(): $data is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 " 
SMTP -> get_lines(): $str is "220-We do not authorize the use of this system to transport unsolicited, " 
SMTP -> get_lines(): $data is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 220-We do not authorize the use of this system to transport unsolicited, " 
SMTP -> get_lines(): $str is "220 and/or bulk e-mail." 
SERVER -> CLIENT: 220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. 
CLIENT -> SERVER: EHLO www.siteparatatuador.com.br 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $str is "250-SIZE 52428800" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800" 
SMTP -> get_lines(): $str is "250-8BITMIME" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME" 
SMTP -> get_lines(): $str is "250-PIPELINING" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING" 
SMTP -> get_lines(): $str is "250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $str is "250-STARTTLS" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250-STARTTLS" 
SMTP -> get_lines(): $str is "250 HELP" 
SERVER -> CLIENT: 250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250-STARTTLS250 HELP 
CLIENT -> SERVER: STARTTLS 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "220 TLS go ahead" 
SERVER -> CLIENT: 220 TLS go ahead 
CLIENT -> SERVER: EHLO www.siteparatatuador.com.br 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $str is "250-SIZE 52428800" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800" 
SMTP -> get_lines(): $str is "250-8BITMIME" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME" 
SMTP -> get_lines(): $str is "250-PIPELINING" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING" 
SMTP -> get_lines(): $str is "250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $str is "250 HELP" 
SERVER -> CLIENT: 250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250 HELP 
Auth method requested: UNKNOWN 
Auth methods available on the server: PLAIN,LOGIN 
Auth method selected: LOGIN 
CLIENT -> SERVER: AUTH LOGIN 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "334 VXNlcm5hbWU6" 
SERVER -> CLIENT: 334 VXNlcm5hbWU6 
CLIENT -> SERVER: Zm9ybXVsYXJpb3NAc2l0ZXBhcmF0YXR1YWRvci5jb20uYnI= 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "334 UGFzc3dvcmQ6" 
SERVER -> CLIENT: 334 UGFzc3dvcmQ6 
CLIENT -> SERVER: JmY7N35lazs/RyNs 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "235 Authentication succeeded" 
SERVER -> CLIENT: 235 Authentication succeeded 
CLIENT -> SERVER: MAIL FROM:<[email protected]> 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 OK" 
SERVER -> CLIENT: 250 OK 
CLIENT -> SERVER: RCPT TO:<[email protected]> 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 Accepted" 
SERVER -> CLIENT: 250 Accepted 
CLIENT -> SERVER: DATA 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "354 Enter message, ending with "." on a line by itself" 
SERVER -> CLIENT: 354 Enter message, ending with "." on a line by itself 
CLIENT -> SERVER: Date: Wed, 6 Apr 2016 19:29:16 +0000 
CLIENT -> SERVER: To: Silvio <[email protected]> 
CLIENT -> SERVER: From: Stavit <[email protected]> 
CLIENT -> SERVER: Subject: Assunto 
CLIENT -> SERVER: Message-ID: <[email protected]> 
CLIENT -> SERVER: X-Mailer: PHPMailer 5.2.14 (https://github.com/PHPMailer/PHPMailer) 
CLIENT -> SERVER: MIME-Version: 1.0 
CLIENT -> SERVER: Content-Type: text/html; charset=UTF-8 
CLIENT -> SERVER: Content-Transfer-Encoding: 8bit 
CLIENT -> SERVER: 
CLIENT -> SERVER: Teste 
CLIENT -> SERVER: 
CLIENT -> SERVER: . 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 OK id=1ant8e-0001Jj-Nj" 
SERVER -> CLIENT: 250 OK id=1ant8e-0001Jj-Nj 
CLIENT -> SERVER: QUIT 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "221 vps.siteparatatuador.com.br closing connection" 
SERVER -> CLIENT: 221 vps.siteparatatuador.com.br closing connection 
Connection: closed 
Connection: opening to mail.siteparatatuador.com.br:587, timeout=300, options=array ('ssl' => array ('verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true,),) 
Connection: opened 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 " 
SMTP -> get_lines(): $data is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 " 
SMTP -> get_lines(): $str is "220-We do not authorize the use of this system to transport unsolicited, " 
SMTP -> get_lines(): $data is "220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 220-We do not authorize the use of this system to transport unsolicited, " 
SMTP -> get_lines(): $str is "220 and/or bulk e-mail." 
SERVER -> CLIENT: 220-vps.siteparatatuador.com.br ESMTP Exim 4.86_1 #1 Wed, 06 Apr 2016 16:29:16 -0300 220-We do not authorize the use of this system to transport unsolicited, 220 and/or bulk e-mail. 
CLIENT -> SERVER: EHLO www.siteparatatuador.com.br 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $str is "250-SIZE 52428800" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800" 
SMTP -> get_lines(): $str is "250-8BITMIME" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME" 
SMTP -> get_lines(): $str is "250-PIPELINING" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING" 
SMTP -> get_lines(): $str is "250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $str is "250-STARTTLS" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250-STARTTLS" 
SMTP -> get_lines(): $str is "250 HELP" 
SERVER -> CLIENT: 250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250-STARTTLS250 HELP 
CLIENT -> SERVER: STARTTLS 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "220 TLS go ahead" 
SERVER -> CLIENT: 220 TLS go ahead 
CLIENT -> SERVER: EHLO www.siteparatatuador.com.br 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]" 
SMTP -> get_lines(): $str is "250-SIZE 52428800" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800" 
SMTP -> get_lines(): $str is "250-8BITMIME" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME" 
SMTP -> get_lines(): $str is "250-PIPELINING" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING" 
SMTP -> get_lines(): $str is "250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $data is "250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN" 
SMTP -> get_lines(): $str is "250 HELP" 
SERVER -> CLIENT: 250-vps.siteparatatuador.com.br Hello vps.siteparatatuador.com.br [192.185.218.52]250-SIZE 52428800250-8BITMIME250-PIPELINING250-AUTH PLAIN LOGIN250 HELP 
Auth method requested: UNKNOWN 
Auth methods available on the server: PLAIN,LOGIN 
Auth method selected: LOGIN 
CLIENT -> SERVER: AUTH LOGIN 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "334 VXNlcm5hbWU6" 
SERVER -> CLIENT: 334 VXNlcm5hbWU6 
CLIENT -> SERVER: Zm9ybXVsYXJpb3NAc2l0ZXBhcmF0YXR1YWRvci5jb20uYnI= 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "334 UGFzc3dvcmQ6" 
SERVER -> CLIENT: 334 UGFzc3dvcmQ6 
CLIENT -> SERVER: JmY7N35lazs/RyNs 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "235 Authentication succeeded" 
SERVER -> CLIENT: 235 Authentication succeeded 
CLIENT -> SERVER: MAIL FROM:<[email protected]> 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 OK" 
SERVER -> CLIENT: 250 OK 
CLIENT -> SERVER: RCPT TO:<[email protected]> 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 Accepted" 
SERVER -> CLIENT: 250 Accepted 
CLIENT -> SERVER: DATA 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "354 Enter message, ending with "." on a line by itself" 
SERVER -> CLIENT: 354 Enter message, ending with "." on a line by itself 
CLIENT -> SERVER: Date: Wed, 6 Apr 2016 19:29:16 +0000 
CLIENT -> SERVER: To: Silvio <[email protected]> 
CLIENT -> SERVER: From: Stavit <[email protected]> 
CLIENT -> SERVER: Subject: Assunto 
CLIENT -> SERVER: Message-ID: <[email protected]> 
CLIENT -> SERVER: X-Mailer: PHPMailer 5.2.14 (https://github.com/PHPMailer/PHPMailer) 
CLIENT -> SERVER: MIME-Version: 1.0 
CLIENT -> SERVER: Content-Type: text/html; charset=UTF-8 
CLIENT -> SERVER: Content-Transfer-Encoding: 8bit 
CLIENT -> SERVER: 
CLIENT -> SERVER: Teste 
CLIENT -> SERVER: 
CLIENT -> SERVER: . 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "250 OK id=1ant8f-0001Js-2e" 
SERVER -> CLIENT: 250 OK id=1ant8f-0001Js-2e 
CLIENT -> SERVER: QUIT 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): $str is "221 vps.siteparatatuador.com.br closing connection" 
SERVER -> CLIENT: 221 vps.siteparatatuador.com.br closing connection 
Connection: closed 
{"error":false,"message":"Mensagens Enviadas"} 
+0

Outlookの「迷惑メール」フォルダを確認しましたか?たくさんのPHPMailerメールがJunkフォルダにあります。それが私が尋ねる理由です。あなたはそれを見れば、あなたはヘッダーを投稿できますか、Outlookはあなたに理由の理由を伝えますが、理由は詳しくは説明しません。 – Henry

+0

あなたのメールサーバーがブラックリストに載っているかどうかを確認してください[ここ](http://www.abuseat.org/)。 IPブラックリストのために電子メールがブロックされた場合、PHPMailerはあなたに通知しません。 –

+0

私は賛成ですが、また賛成できません。最も奇妙なことは、これがOutlookの電子メールにしか起こらないということです。私のIPアドレス192.185.218.52はCBLには載っていません。 –

答えて

0

これは愚かに聞こえるかもしれないが、あなたのメーラーのNAME部から&からあなたを削除し、あなたの体に退会オプションを追加します。私はちょうどこれの長い時間のために戦ったOutlookの顧客サポートはひどく役に立たず、代わりに私はoutlook/hotmailがこれらのタグ、ADDReplyTOなどを持っている電子メールを拒絶する高い迷惑メールフィルタを持っている情報をオンラインで見つけることができた明らかに2003年の米国のCAN-SPAM法の一部です。

私はこれが助けてくれることを願っています!

関連する問題