Ruby on Rails中如何使用mailer

来源:爱站网时间:2020-03-24编辑:网友分享
是不是很多都不知道mailer是什么,要怎么使用mailer,那么今天爱站小编就将为大家介绍Ruby on Rails中如何使用mailer的内容,感兴趣的小伙伴们一起跟小编看看吧。

是不是很多都不知道mailer是什么,要怎么使用mailer,那么今天爱站小编就将为大家介绍Ruby on Rails中如何使用mailer的内容,感兴趣的小伙伴们一起跟小编看看吧。
    把 mails 命名为 SomethingMailer。 没有 Mailer 字根的话,不能立即显现哪个是一个 Mailer,以及哪个视图与它有关。
    提供 HTML 与纯文本视图模版。

    在你的开发环境启用信件失败发送错误。这些错误缺省是被停用的。

ruby;">
 # config/environments/development.rb

 config.action_mailer.raise_delivery_errors = true

    在开发模式使用 smtp.gmail.com 设置 SMTP 服务器(当然了,除非你自己有本地 SMTP 服务器)。

 

 # config/environments/development.rb

 config.action_mailer.smtp_settings = {
  address: 'smtp.gmail.com',
  # 更多设置
 }

    提供缺省的配置给主机名。

 # config/environments/development.rb
 config.action_mailer.default_url_options = {host: "#{local_ip}:3000"}

 # config/environments/production.rb
 config.action_mailer.default_url_options = {host: 'your_site.com'}

 # 在你的 mailer 类
 default_url_options[:host] = 'your_site.com'

    如果你需要在你的网站使用一个 email 链结,总是使用 _url 方法,而不是 _path 方法。 _url 方法包含了主机名,而 _path 方法没有。

 # 错误
 You can always find more info about this course
 = link_to 'here', url_for(course_path(@course))

 # 正确
 You can always find more info about this course
 = link_to 'here', url_for(course_url(@course))

    正确地显示寄与收件人地址的格式。使用下列格式:

 # 在你的 mailer 类别
 default from: 'Your Name <info@your_site.com>'

    确定测试环境的 email 发送方法设置为 test :

 # config/environments/test.rb

 config.action_mailer.delivery_method = :test

    开发与生产环境的发送方法应为 smtp :

 # config/environments/development.rb, config/environments/production.rb

 config.action_mailer.delivery_method = :smtp

    当发送 HTML email 时,所有样式应为行内样式,由于某些用户有关于外部样式的问题。某种程度上这使得更难管理及造成代码重用。有两个相似的 gem 可以转换样式,以及将它们放在对应的 html 标签里: premailer-rails3 和roadie。

    应避免页面产生响应时寄送 email。若多个 email 寄送时,造成了页面载入延迟,以及请求可能逾时。使用 delayed_job gem 的帮助来克服在背景处理寄送 email 的问题。

以上就是小编介绍Ruby on Rails中如何使用mailer的内容,要想将Ruby学的更好,我们就需要在实践中不断学习成长。

上一篇:如何在操作系统上安装Ruby解释器

下一篇:迁移Ruby on Rails的注意事项

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载