diff options
Diffstat (limited to 'actionmailer/test/mailers/delayed_mailer.rb')
-rw-r--r-- | actionmailer/test/mailers/delayed_mailer.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionmailer/test/mailers/delayed_mailer.rb b/actionmailer/test/mailers/delayed_mailer.rb new file mode 100644 index 0000000000..62d4baa434 --- /dev/null +++ b/actionmailer/test/mailers/delayed_mailer.rb @@ -0,0 +1,6 @@ +class DelayedMailer < ActionMailer::Base + + def test_message(*) + mail(from: 'test-sender@test.com', to: 'test-receiver@test.com', subject: 'Test Subject', body: 'Test Body') + end +end |