| |
| Sending Mail with ActionMailer | |
|
require 'rubygems'
require 'action_mailer'
class Emailer < ActionMailer::Base
def test_email(email_address, email_body)
recipients(email_address)
from "[email protected]"
subject "This is a test e-mail"
body email_body
end
end
Emailer.deliver_test_email('me@myDomain.net', 'This is a test e-mail!')
|
| | | | Related examples in the same category |
|