2014-05-22 rails4.1でメールのプレビュー Ruby On Rails rails4.1からメールのプレビュー機能ができたと聞いて、使ってみた! まず下準備 rails g mailer user_mailer /app/mailers/user_mailer.rb class UserMailer < ActionMailer::Base default from: "from@example.com" def welcome @to = "to@test.com" @from = "from@test.com" @subject = "hoge" mail(:subject => @subject, :to => @to, :from => @from) end end /app/views/user_mailer/welcome.text.erb テストメールだぉ メ