我已经使用http://docs.aws.amazon.com/ses/latest/DeveloperGuide/scripts-mtas-sendmail.html中记录的 SES 设置了我的 ec2 实例
一切都在相应地工作,除了最后一点
sudo /usr/bin/sendmail -f from@example.com to@example.com
抛出错误说 /usr/bin/sendmail: No such file or directory
而是使用带有“sbin”的路径,我能够成功发送邮件。
sudo /usr/sbin/sendmail -f from@example.com to@example.com
我如何配置 php 以使用此路径。
用sendmail_path = /usr/sbin/sendmail设置我的 php ini ;
没用。。