agenda-libre-ruby/test/mailers/previews/event_mailer_preview.rb

11 lines
333 B
Ruby

# 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