rails/actionmailer/test/mailers/delayed_mailer.rb
2014-08-13 11:36:32 +00:00

7 lines
187 B
Ruby

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