blob: 402066151ef074fc793aa2fa3f9af8fd0eac2dd1 (
plain)
1
2
3
4
5
6
7
|
# frozen_string_literal: true
class EmailRejectionMailerPreview < ActionMailer::Preview
def rejection
EmailRejectionMailer.rejection("some rejection reason", "From: someone@example.com\nraw email here").message
end
end
|