1 2 3 4 5 6 7
# frozen_string_literal: true module Mail def self.from_source(source) Mail.new Mail::Utilities.binary_unsafe_to_crlf(source.to_s) end end