- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有大约 30 个将用户作为参数传递的邮件程序方法。因为我需要访问 View 中的@user 变量,所以我必须在每个邮件程序方法中设置这个实例变量,例如 send_x_email(user)。
通常这会在初始化方法中完成,但我读到邮件程序的行为有点不同。此外,一些方法采用不同数量的参数(一个只采用用户,另一种采用用户和消息)。
我调查了 before_action 回调并查看了这篇文章
Setting instance variables in Action Mailer?
...但我仍然卡住了。
对于如何简化事情并从 mailer 类的 30 多个方法中删除 @user = user 的任何想法,我将不胜感激。干杯!
class ReminderSender < ActionMailer::Base
def send_commands_email(user)
@user = user
mail(to: @user.email,
subject: "All Commands",
from: "<commands@#{ENV['DOMAIN']}>")
end
def send_attachment_warning(user, message)
@user = user
@message = message
mail(to: @user.email,
subject: "Attachment Warning",
from: "<attachments@#{ENV['DOMAIN']}>")
end
end
最佳答案
尝试在您的类中定义一个“邮件”方法并在那里声明一个实例变量,例如
class YouMailer
def send_email(user, message)
subject = 'something'
body = message
mail(user, {subject: subject, body: body}})
end
def mail(user, options={})
@user = user
mail_options = {to: @user.email}.merge(options)
super(mail_options)
end
end
但您可能需要为该策略指定“template_path”和“template_name”选项。
我的建议是保持现状。出于必要,在所有邮件程序方法中使用“@user = user”也不错。
关于ruby - 在 ActionMailer 中设置实例变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27516574/
您可以通过添加 :queue 作为可选参数来指定在 ActionMailer 中调用 Deliver_later 时要使用的队列,例如: Notifier.welcome(User.first.id)
环境 Ruby 2.2.1、Rails 4.2.0、rspec-core 3.2.2、rspec-expectations 3.2.0、rspec-mocks 3.2.1、rspec-rails 3.
我正在使用 ActionMailer 发送电子邮件,这些电子邮件包含图像。包含我正在使用的图像 和 config.action_controller.asset_host在暂存/生产中设置正确。 这些
错误 我已经完成了 ActionMailer 设置并在开发中完美运行。我可以调用 UserMailer.welcome(user).deliver,然后电子邮件就会到达目的地。但是,当我将代码投入生产
我正在尝试向我们的用户发送一封本质上只是一张巨型图像的 HTML 电子邮件。到目前为止,我还没有尝试过任何花哨的东西。我的 View 如下所示: body {
一段时间以来,我一直在苦苦思索。我有这个字符串: [18] pry(main)> p.title => "Human meat – Wesker and Son butchers at Smithfi
我正在尝试在我的开发环境中设置一个简单的 contact_us 页面,用户可以在其中使用我创建的表单发送查询。我已经设置了 ActiveMailer 和联系人模型/ Controller / View
我的 config/environments/development.rb 中有以下内容 # ActionMailer settings config.action_mailer.perfor
有没有简单的方法来做 response.should render_template(:foo) 的等价物?在邮件规范中?这是我想要做的: mail.should render_template(:w
我已将 Capistrano 设置为在部署我的 RoR (2.3.8) 应用程序后发送电子邮件。我有一个 config/cap_mailer.rb文件基本上如下所示: ActionMailer::Ba
我有一个问题,ActionMailer 有时不发送电子邮件。它是可重复的,并且会在某些时候影响某些人,尽管导致它的原因是个谜。 尽管 config.action_mailer.raise_delive
我正在使用 ActionMailer 并且在我的邮件模型中,我有一个这样的 from set default :from => "from@example.org" 在我的 environment.r
我不知道为什么,但是 Rails Mailer 使用 Gmail 帐户发送的电子邮件收到的邮件带有主题但正文为空... postman : class ContatoMailer E
我有以下代码。它是一个 ActionMailer 类方法,发送包含两种附件的电子邮件: pdf 文件 (_attachment),在内存中呈现并直接添加到消息中 一些其他文件 (_attached_f
通过actionmailer发送邮件时,在SMTP服务器正常或错误时,该 Action 邮件将从SMTP服务器获得响应。有没有办法在发送邮件后检索此响应? 另外,如果SMTP服务器未抛出任何错误,该怎
我的 Rails 3.1 项目中的 ActionMailer 有一个奇怪的行为,ActionMailer::Base.deliveries 在测试中是空的,而我实际上可以通过在 rails 控制台中运
我一直在使用 actionmailer,但我总觉得它很笨重而且不直观。 你们知道其他更轻便、更直观的解决方案吗? 最佳答案 看看 Pony gem(如 Pony Express),它是 ActionM
我需要在Rails应用程序中使用两个不同的smtp服务器。看来ActionMailer的构造方式,不可能有不同的smtp_settings用于 一个子类。每当发送邮件时,我都可以重新加载每个邮件程序类
看起来很简单,但我还没能让它发挥作用。这些文件在 Web 应用程序上的 S3 上工作正常,但当我通过下面的代码通过电子邮件发送它们时,文件已损坏。 应用程序堆栈:rails 3、heroku、回形针
我在 app/models 中有以下邮件代码。 class Mailman "xyz" # Sends an Email reminder to all the users who missed
我是一名优秀的程序员,十分优秀!