Actionmailer 是如何工作的?

发布于 2024-10-27 16:30:50 字数 64 浏览 4 评论 0原文

如果我需要给 2 个人寄一封信,我该怎么做?我在网上找到了文档,但我不明白它们,你能用简单的语言向我展示并解释吗?

If I need send some letter to 2 people, how can I do this? I found docs in web, but I don't understand them, can you show me and explain me using simple language?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

_失温 2024-11-03 16:30:50
def send_mail_persons(user)
  @user = user
  mail :to => @user.email, :subject => "Amusement.", :from => MAIL_ADDRESS
end

这里我调用了方法 send_mail_persons 并将收件人信息作为参数传递。还有一个简单的方法..

def send_mail_persons
  mail :to => MAILING_ADDRESS, :subject => "Amusement.", :from => MAIL_ADDRESS
end

并在常量中定义 MAILING_ADDRESS 和 MAIL_ADDRESS 。

谢谢

def send_mail_persons(user)
  @user = user
  mail :to => @user.email, :subject => "Amusement.", :from => MAIL_ADDRESS
end

Here i have called the method send_mail_persons and passed the recipients info as a parameter.Also there is a simple way..

def send_mail_persons
  mail :to => MAILING_ADDRESS, :subject => "Amusement.", :from => MAIL_ADDRESS
end

and define both MAILING_ADDRESS and MAIL_ADDRESS in the constants.

Thanx

少女净妖师 2024-11-03 16:30:50

你能找到的最好的是 Ryan 的 Railscast:

http://railscasts.com/episodes /206-action-mailer-in-rails-3

这里还有很好的指南:

http:// /guides.rubyonrails.org/action_mailer_basics.html

实际上,您不仅可以在那里阅读有关 ActionMailer 的内容,还可以阅读有关整个 Rails 厨房的内容。

Best you can find is Ryan's Railscast:

http://railscasts.com/episodes/206-action-mailer-in-rails-3

Also good guide is here:

http://guides.rubyonrails.org/action_mailer_basics.html

Actually you can read there not just about ActionMailer but about whole Rails kitchen.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文