したがって、完全に有効な .email ビューのように見えるものがあり、すべてドキュメントに基づいて書かれています。
<:Subject>
Splatoon/Notify
<:Html>
<h1>Welcome {{ name }}</h1>
<p>Thanks for using Splatoon/Notify. We hope you enjoy the service.</p>
<:Text>
Welcome {{ name }}! Thanks for using Splatoon/Notify. We hope you enjoy the service.
mailer_tasks.rb内で、このタスクによって呼び出されています
def onboard_user(email)
Mailer.deliver('app/main/views/mailers/onboard.email', {to: email, :via => :smtp})
end
それでも、このエラーがスローされます
Unable to find view at `app/main/views/mailers/onboard.email/subject`
なぜ /subject パスを探すのでしょうか? メーラー gem に関する StackOverflow に関する質問が見つかりません。