# File lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb, line 81
    def quote_phrase( str )
      # If the string supplied has PHRASE unsafe characters in it, will return the string quoted 
      # in double quotes, otherwise returns the string unmodified
      (PHRASE_UNSAFE === str) ? dquote(str) : str
    end