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