Skip to content

Instantly share code, notes, and snippets.

@rwarbelow
Last active July 20, 2016 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwarbelow/b259dde8dd70618347103dc0a1a1230b to your computer and use it in GitHub Desktop.
Save rwarbelow/b259dde8dd70618347103dc0a1a1230b to your computer and use it in GitHub Desktop.
Mail Gem Example
require 'mail'
mail = Mail.new do
from 'rachelwarbelow@gmail.com'
to 'rachel@turing.io'
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