Skip to content

Instantly share code, notes, and snippets.

@temochka
Created December 21, 2014 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save temochka/c7a85e2b147b3b840734 to your computer and use it in GitHub Desktop.
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?
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