Created
January 1, 2013 20:18
-
-
Save aliou/4429723 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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