我在heroku上所以不清楚在哪里以及如何设置它以便设计可以发送电子邮件.
我实际上还有两个方向:
>我正在使用sendgrid,所以我想知道它是如何工作的.
>对于我的手动邮寄,我使用PostageApp,我更喜欢它,因为它可以让我看到我的电子邮件发生了什么.我使用PostageApp的方式是我的Mailers是一类PostageApp的邮件程序.
谢谢.
解决方法
在Rails 3中,我在config / environments / production.rb中使用了以下设置
# Disable delivery errors,bad email addresses will be ignored config.action_mailer.raise_delivery_errors = true config.action_mailer.delivery_method = :smtp config.action_mailer.default_url_options = { :host => '##YOUR_PROJECTNAME##.heroku.com' } ActionMailer::Base.smtp_settings = { :address => "smtp.sendgrid.net",:port => 25,:user_name => ENV['SENDGRID_USERNAME'],:password => ENV['SENDGRID_PASSWORD'],:domain => ENV['SENDGRID_DOMAIN'],:authentication => :plain }