在编写ruby on rails程序时,我们可能会需要用到发送邮件的程序,如果使用gmail进行smtp发送一般问题不大,但很多企业使用的是腾讯QQ企业邮箱。使用该邮箱进行链接时出现各种错误,google后也没看到有正确的解决方案,我在尝试多次后给出一个解决方案如下:
编辑文件config/environments/production.rb:(如果你使用的是产品模式的话)
# 详情访问: http://www.isumeng.com # Email: [email protected] config.action_mailer.delivery_method = :smtp config.action_mailer.raise_delivery_errors = true config.action_mailer.smtp_settings = { address: \'smtp.exmail.qq.com\', port: 25, domain: \'isumeng.com\', user_name: \'[email protected]\', password: \'\', authentication: :login, enable_starttls_auto: false, } # Log the query plan for queries taking more than this (works # with SQLite, MySQL, and PostgreSQL) # config.active_record.auto_explain_threshold_in_seconds = 0.5 ActionMailer::Base.default :from => "[email protected]"
注意:务必加上这个配置,并且不要在mailer 类里面再定义from address,我也是在尝试后验证的。
ActionMailer::Base.default :from => "[email protected]"
如果有的话,欢迎大家给出更好的方案!