Sha256: d2cf51c2dadbbcd9bd5a7efe6570a70c92d44b5be7708b32e75c87973f85c387
Contents?: true
Size: 1.84 KB
Versions: 1
Compression:
Stored size: 1.84 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 begin body = body.gsub(/^(?=>)/, ">").gsub(/^(?!>)/, "> ") rescue body = Iconv.conv(body, "US-ASCII//TRANSLIT//IGNORE", "UTF-8").gsub(/^(?=>)/, ">").gsub(/^(?!>)/, "> ") end {'from' => "#@name <#@username>", 'to' => primary_recipient, 'cc' => cc, 'subject' => subject, :body => body} end def primary_recipient from = @orig_headers['from'] reply_to = @mail.header['Reply-To'] @primary_recipient = (reply_to || from).to_s 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}/} cc << @always_cc cc.select {|x| x !~ /#{@primary_recipient}/}.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vmail-1.6.5 | lib/vmail/reply_template.rb |