在我的PHP Web应用程序中,我希望在发生某些错误时通过电子邮件收到通知.我想使用我的Gmail帐户发送这些内容.怎么可以这样做?
Gmail的SMTP服务器需要非常具体的配置.
来自Gmail帮助:
Outgoing Mail (SMTP) Server (requires TLS) - smtp.gmail.com - Use Authentication: Yes - Use STARTTLS: Yes (some clients call this SSL) - Port: 465 or 587 Account Name: your full email address (including @gmail.com) Email Address: your email address (username@gmail.com) Password: your Gmail password
您可以在Pear :: Mail或PHPMailer中设置这些设置.查看他们的文档了解更多详情.