Skip to content

Instantly share code, notes, and snippets.

@filiptepper
Created May 13, 2010 10:52
Show Gist options
  • Save filiptepper/399715 to your computer and use it in GitHub Desktop.
Save filiptepper/399715 to your computer and use it in GitHub Desktop.
# 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