`
ddddddddd
  • 浏览: 11668 次
  • 性别: Icon_minigender_1
  • 来自: 冥王星
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

在rails中使用ActionMailer发email

阅读更多
Linux下使用sendmail的设置

ActionMailer::Base.delivery_method = :sendmail
ActionMailer::Base.sendmail_settings = { 
  :location       => '/usr/sbin/sendmail', 
  :arguments      => '-i -t -f no-reply@anyhost.com'
} 


一定要注意ActionMailer::Base.delivery_method = :sendmail,默认好像是:smtp如果不设置使用sendmail会发不出信的。


使用smtp的设置

ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
  :address => "mail.anyhost.com",
  :port => 25,
  :domain => "anyhost.com",
  :authentication => :login,
  :user_name => "youraccount",
  :password => "yourpassword",
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics