私はこの質問を見て、それを利用できませんでした: Rubyの電子メールエンコーディングとquoted-printableコンテンツ
引用印刷可能としてメールを送信したいのですが、エンコードされていない状態で送信されますtext/html
。何か助けはありますか?
class UserMailer < ActionMailer::Base
def welcome_mail(user)
recipients user.email
from "no-reply@example.com"
subject "Thanks for registering"
body :user => user
end
end