配置ActionMailer使用GMail发送邮件

这个问题由来已久,比较了一下几种现有的解决方案,最后发现Robert Bousquet的方案是最简单的。

1. Robert只提供了一个源码下载链接,不是很方便,我将它放到了github上:


$ script/plugin install git://github.com/yzhang/smtp_tls.git

2. 修改environment.rb:


require "smtp_tls"
mailer_config = File.open("#{RAILS_ROOT}/config/mailer.yml")
mailer_options = YAML.load(mailer_config)
ActionMailer::Base.smtp_settings = mailer_options

3. 建立config/mailer.yml


  :address: smtp.gmail.com
  :port: 587
  :user_name: john@doe.com
  :password: s1j234gh
  :authentication: :plain

4. 如果你使用了ExceptionNotification插件,那么你需要确保ExceptionNotification的发件人设置与你的Gmail帐户相符,否则GMail将会拒绝发送。

摘自:www.letrails.cn

转载于:https://www.cnblogs.com/ToDoToTry/archive/2011/08/04/2127949.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐