23 lines
807 B
Ruby
23 lines
807 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
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/event_mailer/accept
|
|
def accept
|
|
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
|
|
EventMailer.accept Event.last
|
|
end
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/event_mailer/destroy
|
|
def destroy
|
|
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
|
|
event = Event.last
|
|
event.reason_for_deletion = 'hello world'
|
|
EventMailer.destroy event
|
|
end
|
|
end
|