Skip to content

Instantly share code, notes, and snippets.

@zhhz
Created May 27, 2009 12:15
Show Gist options
  • Select an option

  • Save zhhz/118617 to your computer and use it in GitHub Desktop.

Select an option

Save zhhz/118617 to your computer and use it in GitHub Desktop.
def send_email()
begin
mailer = Merb::Mailer.new(
:from => 'your from',
# hack: Net::SMTP.send_message does not send msg to cc
:to => 'your_to list',
:subject => 'your subject',
:text => 'content')
mailer.deliver!
rescue => exception
Merb.logger.error(exception)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment