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

16 lines
536 B
Ruby
Raw Normal View History

# 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'
2014-07-01 15:50:39 +02:00
EventMailer.create Event.last
end
# Preview this email at http://localhost:3000/rails/mailers/event_mailer/update
def update
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
EventMailer.update Event.last
end
end