2012-06-18 157 views
0

我试图通过从我的本地SMTP服务器(Gmail)等发送邮件(WAMP)。当运行程序就会显示致命错误:最长30秒的执行时间超过。我是更改超时获得它会产生同样的错误SMTP邮件发送错误的PHP

<?php 
$to = "[email protected]"; 
$nameto = "Who To"; 
$from = "[email protected]"; 
$namefrom = "Who From"; 
$subject = "Hello World Again!"; 
$message = "World, Hello!"; 
authSendEmail($from, $namefrom, $to, $nameto, $subject, $message); 

function authSendEmail($from, $namefrom, $to, $nameto, $subject, $message) 
{ 
//SMTP + SERVER DETAILS 
/* * * * CONFIGURATION START * * * */ 
$smtpServer = "smtp.gmail.com"; 
$port = "25"; 
$timeout = "30"; 
$username = "username"; 
$password = "password"; 
$localhost = "27.107.106.163"; 
$newLine = "\r\n"; 
/* * * * CONFIGURATION END * * * * */ 

//Connect to the host on the specified port 
$smtpConnect = fsockopen($smtpServer, $port, $errno, $errstr, $timeout); 
$smtpResponse = fgets($smtpConnect, 515); 
if(empty($smtpConnect)) 
{ 
$output = "Failed to connect: $smtpResponse"; 
return $output; 
} 
else 
{ 
$logArray['connection'] = "Connected: $smtpResponse"; 
} 

//Request Auth Login 
fputs($smtpConnect,"AUTH LOGIN" . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['authrequest'] = "$smtpResponse"; 

//Send username 
fputs($smtpConnect, base64_encode($username) . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['authusername'] = "$smtpResponse"; 

//Send password 
fputs($smtpConnect, base64_encode($password) . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['authpassword'] = "$smtpResponse"; 

//Say Hello to SMTP 
fputs($smtpConnect, "HELO $localhost" . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['heloresponse'] = "$smtpResponse"; 

//Email From 
fputs($smtpConnect, "MAIL FROM: $from" . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['mailfromresponse'] = "$smtpResponse"; 

//Email To 
fputs($smtpConnect, "RCPT TO: $to" . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['mailtoresponse'] = "$smtpResponse"; 

//The Email 
fputs($smtpConnect, "DATA" . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['data1response'] = "$smtpResponse"; 

//Construct Headers 
$headers = "MIME-Version: 1.0" . $newLine; 
$headers .= "Content-type: text/html; charset=iso-8859-1" . $newLine; 
$headers .= "To: $nameto <$to>" . $newLine; 
$headers .= "From: $namefrom <$from>" . $newLine; 

fputs($smtpConnect, "To: $to\nFrom: $from\nSubject: $subject\n$headers\n\n$message  \n.\n"); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['data2response'] = "$smtpResponse"; 

// Say Bye to SMTP 
fputs($smtpConnect,"QUIT" . $newLine); 
$smtpResponse = fgets($smtpConnect, 515); 
$logArray['quitresponse'] = "$smtpResponse"; 
} 
?> 

请帮助我的人对调试错误

+2

非常明显......无论您尝试连接的服务器在30秒的PHP超时时间内都无法访问,脚本就会死亡。你的内部超时时间为100秒,而PHP的超时时间为30秒,所以你永远不会看到自己的错误。 –

+0

SMTP服务器可能很讨厌。如果你在'QUIT'后面运行'fclose',而不是最后的'fgets',会发生什么? – Wrikken

+1

你真的打算建立SSL连接吗?我看不到证书设置,只是简单的fsockopen。端口465仅适用于通过SSL的SMTP;你希望25用于普通SMTP或587用于邮件提交。 –

回答

0

你有太多的冗余代码,这是你应该做的:

<?php 
    require_once 'Mail.php'; 
    require_once 'Mail/mime.php'; 
    // set all of the parameters 
    $to = "Who To <[email protected]>"; 
    $from = "Who From <[email protected]>"; 
    $subject = "Hello World Again!"; 
    $message = "World, Hello!"; 

    $text = strip_tags($message); 

    // create the headers 
    $headers = array(
     'Subject' => $subject, 
     'From' => $from, 
     'To' => $to, 
     'MIME-Version' => '1.0', 
     'Date' => date('r'), 
     'Message-ID' => '<'.sha1(microtime(true)).'@mydomain.com>', 
     'Content-Type' => 'text/html', 
     'Content-Transfer-Encoding' => 'quoted-printable', 
    ); // end $headers 


    // create the message 
    $mime = new Mail_mime("\n"); 
    $mime->setTXTBody($text); 
    $mime->setHTMLBody($message); 

    // always call these methods in this order 
    $body = $mime->get(); 
    $headers = $mime->headers($headers); 

    // create the smtp mail object 
    $smtp_params = array(
     'host' => 'smtp.gmail.com', 
     'auth' => true, 
     'username' => 'myUserName', 
     'password' => 'myPassWord', 
    ); // end $smtp_params 
    $smtp = Mail::factory('smtp', $smtp_params); 

    // send the message 

    $recipients = array($to); 
    $mail = $smtp->send($recipients, $headers, $body); 

?> 

PS。 'auth'=> true;在一个ssl连接的smtp_params数组标志中。