Sha256: 356cfe3325a8ebdd51a707f95bb87adc872c1665e8c2c23fa421905134211375
Contents?: true
Size: 1.81 KB
Versions: 5
Compression:
Stored size: 1.81 KB
Contents
# encoding: UTF-8 require 'mail' require 'time' module Vmail class ReplyTemplate def initialize(mail, username, name, replyall, always_cc=nil) @username, @name, @replyall, @always_cc = username, name, replyall, always_cc @mail = Mail.new(mail) end def reply_headers(try_again = true) formatter = Vmail::MessageFormatter.new(@mail) @orig_headers = formatter.extract_headers subject = @orig_headers['subject'] if subject !~ /Re: / subject = "Re: #{subject}" end date = @orig_headers['date'].is_a?(String) ? Time.parse(@orig_headers['date']) : @orig_headers['date'] quote_header = date ? "On #{date.strftime('%a, %b %d, %Y at %I:%M %p')}, #{sender} wrote:\n\n" : "#{sender} wrote:\n\n" body = quote_header + formatter.process_body body.encode("UTF-8", undef: :replace, replace: "??") body.force_encoding("UTF-8") body = body.gsub(/^(?=>)/, ">").gsub(/^(?!>)/, "> ") {'from' => "#@name <#@username>", 'to' => primary_recipient, 'cc' => cc, 'subject' => subject, :body => body} end def primary_recipient reply_headers unless @orig_headers from = @orig_headers['from'] reply_to = @orig_headers['reply-to'] [ reply_to, from ].flatten.compact.map(&:to_s)[0] end def cc return nil unless (@replyall || @always_cc) cc = @mail.header['to'].value.split(/,\s*/) if @mail.header['cc'] cc += @mail.header['cc'].value.split(/,\s*/) end cc = cc.flatten.compact. select {|x| x !~ /#{@username}/ && x !~ /#{@always_cc}/ } cc << @always_cc cc.join(', ') end def sender @mail.header['from'].value end # deprecated def address_to_string(x) x.name ? "#{x.name} <#{x.mailbox}@#{x.host}>" : "#{x.mailbox}@#{x.host}" end end end
Version data entries
5 entries across 5 versions & 1 rubygems