Skip to content

Instantly share code, notes, and snippets.

@aliou
Created January 1, 2013 20:18
Show Gist options
  • Save aliou/4429723 to your computer and use it in GitHub Desktop.
Save aliou/4429723 to your computer and use it in GitHub Desktop.
require 'gmail'
Gmail.connect(username, password) do |gmail|
gmail.deliver do
to "[email protected]"
subject "Having fun in Puerto Rico!"
text_part do
body "Text of plaintext message."
end
html_part do
body "<p>Text of <em>html</em> message.</p>"
end
add_file "/path/to/some_image.jpg"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment