デバッグは時々多忙になることがあります...関数をどのように処理しmail
ますか?いくつかの設定を変更する必要があるようですが、それらをどのように処理できるかわかりません。フォーラムに返信を投稿しようとすると、このエラーが表示されます。
Warning: mail() [function.mail]: 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:\xampp\htdocs\mysite\forum part two\post_reply_parse.php on line 72
72行目の私のコードはこれです
mail($to, $subject, $message, $headers);
私のメールコードはこんな感じです
$email = '';
$email = substr($email, 0, (strlen($email) - 2));
address with your domain at the end
$to = "";
$from = "";
// $bcc is the list of emails that will be sent out as blind carbon copies
$bcc = $email;
$subject = "YOUR_SUBJECT_HERE";
$message = "YOU MESSAGE CONTENT HERE";
$headers = "From: $from\r\nReply-To: $from";
$headers .= "\r\nBcc: {$bcc}";
// Send out the email
mail($to, $subject, $message, $headers);
このエラーを無視したくないので、修正方法を学びたいと思います。