Windows環境での XAMPPでPHPからメール送信する方法の覚書。
2つの設定ファイルを編集
php.ini
C:\xampp\php\php.ini
[mail function]
SMTP = localhost
smtp_port = 587
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
mail.add_x_header = Off
sendmail.ini
C:\xampp\sendmail\sendmail.ini
[sendmail]
smtp_server=smtp.example.com
smtp_port=465
smtp_ssl=auto
auth_username=xxxxx@example.com
auth_password=xxxxx
Apacheを再起動
php・sendmailの設定ファイルの修正が終わったら最後にApacheの再起動
コメント