aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_mailbox/mail_ext/recipients.rb
blob: 58561c7f0154df7de26d95b127ce1e3ae3264658 (plain) (blame)
1
2
3
4
5
class Mail::Message
  def recipients
    Array(to) + Array(cc) + Array(bcc)
  end
end