blob: 62d4baa434e06b1eb2f8d0e64f2e36d462aaf407 (
plain) (
blame)
1
2
3
4
5
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
|