mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
9 lines
255 B
Ruby
9 lines
255 B
Ruby
# Preview all emails at http://localhost:3000/rails/mailers/users_mailer
|
|
class UsersMailerPreview < ActionMailer::Preview
|
|
|
|
# Preview this email at http://localhost:3000/rails/mailers/users_mailer/welcome
|
|
def welcome
|
|
UsersMailer.welcome
|
|
end
|
|
|
|
end
|