PHPMailer不能連線SMTP伺服器,和修改SMTP大小寫沒有關係 (轉)
PHPmailer無法傳送郵件,提示錯誤Error: Could not connect to SMTP host 部落格之前有兩篇文章,《PHPMailer::不能連線SMTP伺服器》《PHPMailer不能連線SMTP伺服器的兩種常見原因》 一為轉載,一為筆記,結果誤人子弟了,不是每個人能解決問題。 有朋友來信求助,我也著急。雖然後來解決了,但我還是不得要領,靜下心來又看了看 PHPMailer不能連線SMTP伺服器,究竟為什麼?先用程式碼檢測一下:
<?
function Get_host($host){ //解析域名
$Get_host=gethostbyname($host);
echo "嘗試連線 $host ...<br>\r\n ";
if(!$Get_host){
$str= "解析失敗 (1)<HR>";
}elseif($Get_host==$host){
$str= "解析失敗 (2): 可能是一個無效的主機名<HR>";
}else{
echo "域名解析為 $Get_host ...<br>\r\n";
Open_host($host);}
echo $str;
}
Function Open_host($host){ //連線主機
if(function_exists('fsockopen')){
$fp = fsockopen($host,25,&$errno,&$errstr,60);
elseif(function_exists('pfsockopen')){
echo "伺服器不支援Fsockopen,嘗試pFsockopen函式 ...<br>\r\n";
$fp = pfsockopen($host,25,&$errno,&$errstr,60); }
else
exit('伺服器不支援Fsockopen函式');
if(!$fp){
echo "代號:$errno,<br>\n錯誤原因:$errstr<HR>";
}else{
echo "SMTP伺服器連線ok!<br>\r\n";
fwrite($fp, "");
$out0= fgets($fp, 128);
#echo $out0;
if (strncmp($out0,"220",3)==0){ // 判斷三位字元內容
echo '220 SMTP服務端響應正常<HR>';
}else{
echo '伺服器端錯誤<HR>';}
}
}
//SMTP伺服器地址
$site = array("smtp.163.com","smtp.sina.cn","smtp.sina.com","smtp.qqq.com","smtp.126.com");
//調運指令碼
#$host="smtp.163.com";
#echo Get_host($host);
for ($i=0; $i<=4; $i++)
{
$host= $site[$i];
echo Get_host($host);
}
PHPmailer是一個非常棒的PHP傳送mail類,處理錯誤則側重於和SMTP伺服器會話過程中的問題,比如身份驗證不對、收件人為空的錯誤提示,但是對於連線到smtp過程的錯誤提示以“Could not connect to SMTP host”一言蔽之,導致了很多問題沒能解決,更可笑的是導致一些有用卻講不出道理的方法流傳於世,可見,冥冥中一切皆有定數。 好了,不說口水話了。 想要搞清楚Could not connect to SMTP host的原因,自然要明白連線服務的步驟 一次完整有效的SMTP發信過程應該包括:解析域名、連線SMTP伺服器、驗證身份、確定收件人和信件內容、傳送 上面那段PHP程式碼就是把這幾個步驟分開來做,找出原因,然後尋找方法。回顯的結果大概有如下幾種:1、解析失敗 (2): 可能是一個無效的主機名
switch($this->Mailer) {
case 'sendmail':
$result = $this->SendmailSend($header, $body);
break;
case 'smtp':
$result = $this->SmtpSend($header, $body);
break;
case 'mail':
$result = $this->MailSend($header, $body);
break;
default:
$result = $this->MailSend($header, $body);
break;
首先smtp絕對不等於SMTP!這一基本原則我居然都會忘掉。 所以,上面的條件都不滿足 PHPmailer將執行 $result = $this->MailSend($header, $body);這句 再來跟蹤MailSend()函式 在class.phpmailer.php 460行左右:
function MailSend($header, $body) {
$to = '';
for($i = 0; $i < count($this->to); $i++) {
if($i != 0) { $to .= ', '; }
$to .= $this->AddrFormat($this->to[$i]);
}
$toArr = split(',', $to);
$params = sprintf("-oi -f %s", $this->Sender);
if ($this->Sender != '' && strlen(ini_get('safe_mode')) < 1) {
$old_from = ini_get('sendmail_from');
ini_set('sendmail_from', $this->Sender);
if ($this->SingleTo === true && count($toArr) > 1) {
foreach ($toArr as $key => $val) {
$rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params);
}
} else {
$rt = @mail($to, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params);
}
} else {
if ($this->SingleTo === true && count($toArr) > 1) {
foreach ($toArr as $key => $val) {
$rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params);
}
} else {
$rt = @mail($to, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header);
}
}
if (isset($old_from)) {
ini_set('sendmail_from', $old_from);
}
if(!$rt) {
$this->SetError($this->Lang('instantiate'));
return false;
}
return true;
}
注意$rt = @mail( 這是用PHP內建的mail函式發信啊! 來自W3School的mail發信例項
<?php
$to = "[email protected]"; //這裡改成你的郵箱地址
$subject = "My subject";
$txt = "Hello world!";
$headers = "From: [email protected]" . "\r\n" .
mail($to,$subject,$txt,$headers);
?>
如果在你的伺服器上執行這指令碼能夠收到郵件,那麼你完全可以用修改SMTP大小寫的方法。不過,畢竟不大好用 . 想要使用mail函式函式發信,需要修改設定php.ini,也即是說,成與不成得看你的服務提供商。 如果伺服器已經設定好了mail()相關的一切,PHPmailer使用mail()的方法當然可以發信成功。不再依賴fsockopen函式 這也就是為什麼防火牆禁止的情況下,用修改smtp大小寫反而能用PHPmailer發信,因為那封e-mail根本是用本地的smtp伺服器代發的 親愛的朋友,你明白了嗎?