如何在rails 3中将mime类型更改为text / html?

时间:2011-01-14 03:57:54

标签: html ruby-on-rails mime-types

Rails 3默认为Content-Type:text / plain

我正在尝试发送和HTML电子邮件。如何调整mime类型?

2 个答案:

答案 0 :(得分:2)

只需在视图模板的扩展名之前添加.html即可。

app/views/user_mailer/welcome_email.html.erb

答案 1 :(得分:0)

我假设你在谈论ActionMailer?将视图文件命名为:

app/views/mailer_name/method_name.text.plain.erb
app/views/mailer_name/method_name.text.html.erb

然后,在text.plain中,提供HTML电子邮件的纯文本版本。