5 lines
131 B
Ruby
5 lines
131 B
Ruby
class UserMailerPreview < ActionMailer::Preview
|
|
def new_account_warning
|
|
UserMailer.new_account_warning(User.first)
|
|
end
|
|
end
|