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