aboutsummaryrefslogblamecommitdiffstats
path: root/lib/action_mailbox/mail_ext/recipients.rb
blob: 87255ce6ce69db94772eb189e4d2e0c186b5ef1f (plain) (tree)
1
2
3
4
5

                   
                                                                                  

     
class Mail::Message
  def recipients
    Array(to) + Array(cc) + Array(bcc) + Array(header[:x_original_to]).map(&:to_s)
  end
end