🗂

xampp、php,メール送る設定

2021/07/20に公開

xmappからgmailに送る方法

C:\xampp\sendmail
C:\xampp\php php.ini
参考
https://itsakura.com/php-send-mail#s1
https://www.php.net/manual/ja/function.mb-send-mail.php
smtpのポートの歴史 587を使う理由について 
https://sendgrid.kke.co.jp/blog/?p=12945&utm_source=google&utm_medium=cpc&utm_content=text&utm_campaign=dsa&gclid=Cj0KCQjw6NmHBhD2ARIsAI3hrM35wUOCyeo8VvXwU0OOJRUh4dAMVC5AHCssLiO72DFtejJs02rrtJcaAg_VEALw_wcB

smtpについての設定について。google help
https://support.google.com/mail/answer/7126229?hl=ja
sendmail.phpに追記する
smtp_server smtpサーバを指定します。
        smtp.gmail.com
smtp.gmail.com
smtp_port smtpのポート番号を指定します。
587
auth_username 自分のgmailのアドレスを指定。xxxx@gmail.com
auth_password 自分のgmailのパスワードを入力

php.iniに追加する
sendmail_path の所に
"C:\xampp\sendmail\sendmail.exe" -t" を追加する。sendmail.exeのディレクトリまで

参考まで
https://www.softel.co.jp/blogs/tech/archives/4765

Discussion