溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么解決php mail錯誤問題

發(fā)布時間:2021-10-20 13:39:58 來源:億速云 閱讀:109 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“怎么解決php mail錯誤問題”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

php mail錯誤的解決辦法:1、在smtp服務(wù)的中繼選項中添加本機IP地址;2、在網(wǎng)關(guān)做個端口映射,把25端口映射到本機即可。

怎么解決php mail錯誤問題

本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版、DELL G3電腦

如何解決php mail錯誤問題?

php的mail()函數(shù)出錯的問題

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>phpinfo</title>
</head>
<body>
<?
$to = "atoat@sina.com";
$subject = "php-Mail";
$msg = "I completely understand SMTP servers now!";
$headers = "From: atoat@163.com/r/nReply-To: atoat@163.com";
mail("$to", "$subject", "$msg", "$headers");
echo "finished!";
?>
</body>
</html>

出現(xiàn)的錯誤:

Warning: mail() [function.mail]: SMTP server response: 550 5.7.1 Unable to relay for atoat@sina.com in C:/webserver/htdocs/www/mail.php on line 14

php.ini配置情況

[mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
sendmail_from = atoat@163.com

已經(jīng)安裝了windows自帶的smtp服務(wù)

找了好久才發(fā)現(xiàn)需要在smtp服務(wù)的中繼選項中添加本機IP地址

虛擬服務(wù)器->屬性->訪問->中繼

選擇"僅以下列表"=>"單臺計算機"=>添加127.0.0.1的本地地址

程序沒有出現(xiàn)問題,但收件箱中沒有立即收到信息.

沒有收到是因為我的機子是在內(nèi)網(wǎng)中,不能把郵件發(fā)送到外網(wǎng).

解決方法:

在網(wǎng)關(guān)做個端口映射,把25端口映射到本機.或者本機有公網(wǎng)IP.

“怎么解決php mail錯誤問題”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI