7 lines
154 B
Ruby
7 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PhishingAlertMailerPreview < ActionMailer::Preview
|
|
def notify
|
|
PhishingAlertMailer.notify(User.first)
|
|
end
|
|
end
|