私のホストは SquirrelMail を使用しています。Squirrel パネルからメールを送信できるだけでなく、メールを受信することもできます。テストする簡単なコードを取りました:
$to = 'test@gmail.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
if(mail($to, $subject, $message, $headers)){
echo '1';
}else echo '2';
phpinfo()
SMTP localhost
smtp_port 25
sendmail_from no value | no value
sendmail_path /usr/sbin/sendmail -t -i -f **MAIL** | /usr/sbin/sendmail -t -i
where **MAIL** is my personal mail, not the one, I want to send from
しかし、私のスクリプトではメールを送信できません。2. wtf ? を受け取ります。