Actionmailer 是如何工作的?
如果我需要给 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里我调用了方法 send_mail_persons 并将收件人信息作为参数传递。还有一个简单的方法..
并在常量中定义 MAILING_ADDRESS 和 MAIL_ADDRESS 。
谢谢
Here i have called the method send_mail_persons and passed the recipients info as a parameter.Also there is a simple way..
and define both MAILING_ADDRESS and MAIL_ADDRESS in the constants.
Thanx
你能找到的最好的是 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.