Sending Mail with ActionMailer : action_mailer « Network « Ruby






Sending Mail with ActionMailer


require 'rubygems'
require 'action_mailer'

class Emailer < ActionMailer::Base
  def test_email(email_address, email_body)
    recipients(email_address)
    from "me@myDomain.net"
    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

1.instruct ActionMailer to look for an SMTP server