使用 Godaddy 邮件和 Rails 3 进行 SMTP 设置
我应该如何使用 Godaddy 邮件在初始化程序文件中设置 SMTP 设置?
How should I set up my SMTP settings in my initializer file using Godaddy mail?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无耻地摘自此处的文章: http://pilotoutlook.wordpress.com/2008/10/13/setup-email-in-ruby-on-rails-using-godaddysmtp/
打开
ROOT/config/environment.rb文件
对于 sendmail,添加以下行 -
对于 Godaddy,添加以下行 -
保存并重新启动您的网络服务器。你已经准备好了。
请记住,您每天只能从 Godaddy 发送 300 封电子邮件,因此如果您需要发送更多电子邮件,则必须使用 sendmail 或其他解决方案。
请注意,端口未设置为 25 - 这是故意的。 GoDaddy 的电子邮件服务器配置为使用多个端口,以防 25 被阻止。
Shamelessly taken from the article here: http://pilotoutlook.wordpress.com/2008/10/13/setup-email-in-ruby-on-rails-using-godaddysmtp/
Open
ROOT/config/environment.rb
fileFor sendmail, add following lines -
For Godaddy, add following lines -
Save and restart your webserver. You are all set.
Remember that you can only send 300 emails per day from Godaddy, so if you need to send more emails, you will have to use sendmail or some other solution.
Note the port is NOT set to 25 - this is on purpose. GoDaddy's email servers are configured to use several ports, just in case 25 is blocked.