Created
May 13, 2010 10:52
-
-
Save filiptepper/399715 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
# encoding: utf-8 | |
gem "mail", "2.2.1" | |
require "mail" | |
message = Mail.new | |
message.charset = "UTF-8" | |
message.from = "zażółć gęślą jaźń <[email protected]>" | |
message.body = "zażółć gęślą jaźń, biatch!" | |
message.subject = "Jest pięknie gdy zażółć gęślą jaźń przechodzi." | |
message.to = "[email protected]" | |
message.deliver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment