0

我正在使用下面的代码class UserMailer < ActionMailer::Base发送电子邮件:

mail :to => "email@address", :subject => "Subject"

如何添加消息正文?

4

1 回答 1

2

您必须对电子邮件正文使用相同操作的邮件程序视图。如果您的邮件操作是,send_mail那么您的默认邮件正文必须是view/users/send_mail.html.erb 有关详细信息,请参见以下链接, http ://guides.rubyonrails.org/action_mailer_basics.html#create-a-mailer-view

于 2013-03-24T15:38:01.940 回答