Created
December 21, 2014 06:35
-
-
Save temochka/c7a85e2b147b3b840734 to your computer and use it in GitHub Desktop.
Oh, wait, since you’ve looked, I’m a text now. Heard of quantum mechanics?
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 'mail' | |
msg = Mail.new { body 'Text' } | |
# => #<Mail::Message:70116771523620, Multipart: false, Headers: > | |
msg.text? | |
# => false | |
puts msg | |
# Date: Sun, 21 Dec 2014 01:29:26 -0500 | |
# Message-ID: <549668c6e2caa_33e13fc554c65be84831f@Artems-MacBook-Pro.local.mail> | |
# Mime-Version: 1.0 | |
# Content-Type: text/plain; charset=UTF-8 | |
# Content-Transfer-Encoding: 7bit | |
# | |
# Text | |
# => nil | |
msg.text? | |
# => true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment