Skip to content

Instantly share code, notes, and snippets.

@rwarbelow
Last active July 20, 2016 18:13
Show Gist options
  • Select an option

  • Save rwarbelow/b259dde8dd70618347103dc0a1a1230b to your computer and use it in GitHub Desktop.

Select an option

Save rwarbelow/b259dde8dd70618347103dc0a1a1230b to your computer and use it in GitHub Desktop.
Mail Gem Example
require 'mail'
mail = Mail.new do
from '[email protected]'
to '[email protected]'
subject 'Hello!'
body 'This is an email that was sent using Ruby.'
end
mail.delivery_method :sendmail
mail.deliver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment