私はローカルでホストされているPHPコードで電子メールを送信したいと思います。私はこのコードを実行するとPHP:localhostでメールを送信
<?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を設定し、ローカルホストからメールを送信することはできません:グーグル、ヤフー...' –
は、「メールサーバへの接続に失敗しました」...あなたがに接続するようにPHPを設定しましたlocalhostのメールサーバ、ポート25.このようなメールサーバをインストールしましたか? – eis
実行中のシステムは何ですか? –