1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/action_mailbox/mail_ext/recipients.rb
2018-11-06 17:03:10 -08:00

5 lines
86 B
Ruby

class Mail::Message
def recipients
Array(to) + Array(cc) + Array(bcc)
end
end