mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 23:04:49 +00:00
* Change email address * Email confirmation * Email change test * Lint * Schema reset * Set test email sender * Select specific user fixture * Refactor/cleanup * Remove unused email_confirmation_token * Current user would never be true * Fix translation test failures
8 lines
336 B
Ruby
8 lines
336 B
Ruby
# Preview all emails at http://localhost:3000/rails/mailers/email_confirmation_mailer
|
|
class EmailConfirmationMailerPreview < ActionMailer::Preview
|
|
# Preview this email at http://localhost:3000/rails/mailers/email_confirmation_mailer/confirmation_email
|
|
def confirmation_email
|
|
EmailConfirmationMailer.confirmation_email
|
|
end
|
|
end
|