mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
6 lines
187 B
Ruby
6 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
|