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

32 lines
1.0 KiB
Ruby

# Preview all emails at http://localhost:3000/rails/mailers/orga_mailer
class OrgaMailerPreview < ActionMailer::Preview
# Preview this email at http://localhost:3000/rails/mailers/orga_mailer/create
def create
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
OrgaMailer.create Orga.last
end
# Preview this email at http://localhost:3000/rails/mailers/orga_mailer/update
def update
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
orga = Orga.last
orga.name += ' et hop'
orga.save!
OrgaMailer.update orga
end
# Preview this email at http://localhost:3000/rails/mailers/orga_mailer/accept
def accept
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
OrgaMailer.accept Orga.last
end
# Preview this email at http://localhost:3000/rails/mailers/orga_mailer/destroy
def destroy
ActionMailer::Base.default_url_options[:host] = 'localhost:3000'
orga = Orga.last
# orga.reason_for_deletion = 'hello world'
OrgaMailer.destroy orga
end
end