# Preview all emails at http://localhost:3000/rails/mailers/event_mailer class EventMailerPreview < ActionMailer::Preview # Preview this email at http://localhost:3000/rails/mailers/event_mailer/create def create ActionMailer::Base.default_url_options[:host] = 'localhost:3000' EventMailer.create(Event.last) end end