2016-04-08 15:22:31 +02:00
|
|
|
# Preview all emails at http://localhost:3000/rails/mailers/supporter_mailer
|
|
|
|
|
class SupporterMailerPreview < ActionMailer::Preview
|
|
|
|
|
def welcome
|
2017-03-30 21:03:59 +02:00
|
|
|
I18n.locale = :de
|
|
|
|
|
SupporterMailer.welcome_email(Supporter.first, SecureRandom.hex(5))
|
2016-04-08 15:22:31 +02:00
|
|
|
end
|
|
|
|
|
end
|