我想通過本地託管的PHP代碼發送電子郵件。PHP:在本地主機發送郵件
<?php
$email = "[email protected]";
$titre = "My subject";
$message = "Text message !";
mail($email, $titre, $message);
?>
當我運行這段代碼,我得到以下錯誤:
Warning: mail() [<a href='function.mail'>function.mail</a>]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\...
我走進php.ini
文件,它似乎是早已配置。
[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25
我該如何解決這個問題?
謝謝
從本地主機本地主機'比如你不能發送郵件,配置一些其他SMTP:谷歌,雅虎......' – 2013-03-07 09:29:00
「無法連接到郵件服務器」 ......你已經配置PHP連接到本地主機上的郵件服務器,端口25.您是否安裝了此類郵件服務器? – eis 2013-03-07 09:31:19
你的運行系統是什麼? – 2013-03-07 09:33:13