2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
class EmailRejectionMailerPreview < ActionMailer::Preview
|
|
|
|
def rejection
|
|
|
|
EmailRejectionMailer.rejection("some rejection reason", "From: someone@example.com\nraw email here").message
|
|
|
|
end
|
|
|
|
end
|