67f8b6b2bc
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