1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailer/test/mailers/delayed_mailer.rb

7 lines
187 B
Ruby
Raw Normal View History

2014-08-12 14:24:19 -04:00
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