Symfony 框架:如何从本地主机发送电子邮件?
使用 symfony 框架如何从本地主机发送测试电子邮件?
最简单的方法是什么?
谢谢你!
Using symfony framework how can I send test emails from localhost?
What are most easiest ways?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想,我通常做的最简单的方法是配置 _dev 环境以使用旧的 Gmail(或任何其他与此相关的提供商)。在 apps/frontend/config/factories.yml 中进行设置:
发送电子邮件当然会花费更长的时间,因为 PHP 必须连接到 Google 的服务器并传递消息。
这样您就可以在生产服务器上设置正确的 SMTP,而只让您的开发机器用于开发。另一个优点是,如果您在路上开发,并且您当地的咖啡馆/机场/信息亭阻塞了端口 25(通常会这样做),那么您在发送邮件时不会遇到问题。
The easiest way, I suppose and what I normally do, is to configure the _dev environment to use good old Gmail (or any other provider for that matter). Set this up in your apps/frontend/config/factories.yml:
Sending e-mails will ofcourse take a little longer because PHP would have to connect to Google's servers and deliver the message.
This way you can worry about setting up a proper SMTP on your production server, and just let your dev machine be for development. Another advantage is if your develop on the road, and your local cafe / airport / kiosk blocks port 25 (they usually do) you won't have problems delivering mail.
您可以安装邮件服务器(例如 Postfix),并将其配置为使用外部邮件服务器作为 SMTP 中继。否则,大多数电子邮件服务将拒绝接受您的邮件,或将其归类为垃圾邮件。
serverfault 上的这个线程可能对您有帮助 - 它解释了如何配置 postfix 通过 gmail 中继电子邮件: 配置 Postfix 通过端口发送/转发电子邮件 Gmail (smtp.gmail.com)第587章
You could install a mail server such as Postfix, and configure it to use an external mail server as an SMTP relay. Otherwise, most email services will either refuse to accept your message, or categorize it as spam.
This thread at serverfault might be helpful to you-it explains how to configure postfix to relay emails through gmail: Configure Postfix to send/relay emails Gmail (smtp.gmail.com) via port 587