广州明生医药有限公司


详解Ruby on Rails中的mailer相关使用

网络编程 详解Ruby on Rails中的mailer相关使用 06-21


把 mails 命名为 SomethingMailer。 没有 Mailer 字根的话,不能立即显现哪个是一个 Mailer,以及哪个视图与它有关。
提供 HTML 与纯文本视图模版。

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

 # 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上使用Redis Store的方法
RedisStore是一个专为Ruby应用程序服务的工具包,原生就支持分片,主从复制,编组以及超时和命名空间。此外,在RubyonRails上使用它也是非常的简单。如

Ruby初学笔记之Hello World
注:RubyWindows安装包请前往http://rubyinstaller.org/下载安装。安装了个Ruby193,写了第一个Ruby程序,来记录下自己学习点滴。首先在Ruby的新建个文件夹Sample

ruby实现网页图片抓取
前段时间看到很多人写的下妹子脚本,自己也写一个moduleCommonHelperrequire'nokogiri'require'open-uri'defdown_load_xmzsite_url="http://www.xxx.com"forindex_pagein1..141doc_html=Nokogi


编辑:广州明生医药有限公司

标签:方法,样式,是一个,错误,环境