2016-04-25 49 views
5

每次我跑我的劇本,我得到了下面crash.txt文件 我使用IIS在發送郵件的PHP我 嘗試PHP的郵件,SMTP和PHPMailerAutoload但是這一切都沒有工作,所有輸出與同crash.txt下面 是崩潰文件的樣本PHP發送電子郵件有崩盤的文本文件

registered owner : Microsoft/Microsoft 
operating system : Windows 7 x64 Service Pack 1 build 7601 
system language : English 
system up time : 5 hours 1 minute 
program up time : 5 minutes 
processors  : 4x Intel(R) Core(TM) i3-4160 CPU @ 3.60GHz 
physical memory : 1186/3968 MB (free/total) 
free disk space : (C:) 116.21 GB 
display mode  : 1024x768, 32 bit 
process id  : $1e74 
allocated memory : 10.56 MB 
executable  : sendmail.exe 
exec. date/time : 2011-06-18 01:10 
compiled with  : Delphi 2006/07 
madExcept version : 3.0l 
callstack crc  : $205f8196, $4436e8c2, $4436e8c2 
exception number : 1 
exception class : EInOutError 
exception message : I/O error 105. 

main thread ($203c): 
004b675c +18a8 sendmail.exe sendmail   922 +440 initialization 
76ee013e +000a ntdll.dll        KiUserExceptionDispatcher 
0040474d +001d sendmail.exe System   262 +0 @AfterConstruction 
0043dada +01fe sendmail.exe IdIOHandler  1508 +60 TIdIOHandler.ReadFromSource 
0043d559 +0159 sendmail.exe IdIOHandler  1315 +57 TIdIOHandler.ReadLn 
0043d380 +0024 sendmail.exe IdIOHandler  1233 +1 TIdIOHandler.ReadLn 
0043d837 +0073 sendmail.exe IdIOHandler  1428 +10 TIdIOHandler.ReadLnWait 
0044035d +0059 sendmail.exe IdTCPConnection 768 +7 TIdTCPConnection.GetInternalResponse 
0043fea3 +0013 sendmail.exe IdTCPConnection 564 +1 TIdTCPConnection.GetResponse 
004403fd +002d sendmail.exe IdTCPConnection 788 +4 TIdTCPConnection.GetResponse 
0045ab97 +0033 sendmail.exe IdSMTP   375 +4 TIdSMTP.Connect 
004b5f14 +1060 sendmail.exe sendmail   808 +326 initialization 
769433c8 +0010 kernel32.dll       BaseThreadInitThunk 

thread $2170: 
76ef0146 +0e ntdll.dll  NtWaitForMultipleObjects 
769433c8 +10 kernel32.dll BaseThreadInitThunk 

thread $1824: 
76ef1f2f +0b ntdll.dll  NtWaitForWorkViaWorkerFactory 
769433c8 +10 kernel32.dll BaseThreadInitThunk 

這是我的代碼:

<?php 
require_once('class.phpmailer.php'); 
$mail = new PHPMailer(); 

$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only 
$mail->SMTPAuth = true; // authentication enabled 
$mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for Gmail 
$mail->Host = "smtp.gmail.com"; 
$mail->Port = 587; // or 587 
$mail->IsHTML(true); 
$mail->Username = '[email protected]'; 
$mail->Password = 'pass'; 
$mail->SetFrom("[email protected]"); 
$mail->Subject = "Test"; 
$mail->Body = "hello"; 
$mail->AddAddress("[email protected]"); 

// if(!$mail->Send()) { 
//  echo "Mailer Error: " . $mail->ErrorInfo; 
// } else { 
//  echo "Message has been sent"; 
// } 
print_r($mail->Send()); 
?> 

回答

0
please check your smtp_host name 

like this 

<?php 
require_once('class.phpmailer.php'); 
$mail = new PHPMailer(); 

$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only 
$mail->SMTPAuth = true; // authentication enabled 
$mail->SMTPSecure = 'tls'; // secure transfer enabled REQUIRED for Gmail 
$mail->Host = "ip-111-133-133-100.ip.secureserver.net"; 
$mail->Port = 587; // or 587 
$mail->IsHTML(true); 
$mail->Username = '[email protected]'; 
$mail->Password = 'pass'; 
$mail->SetFrom("[email protected]"); 
$mail->Subject = "Test"; 
$mail->Body = "hello"; 
$mail->AddAddress("[email protected]"); 

// if(!$mail->Send()) { 
//  echo "Mailer Error: " . $mail->ErrorInfo; 
// } else { 
//  echo "Message has been sent"; 
// } 
print_r($mail->Send()); 
?> 
0

在這個問題中列出的代碼需要一個改變

$port = "465"; 

enter image description here

+0

端口587上的SMTP Gmail/TLS沒有任何問題。 –