module Roda::RodaPlugins::MailProcessor::InstanceMethods

def mail_recipients

headers by default.
The recipients of the mail instance being processed, uses the To and CC
def mail_recipients
  Array(to) + Array(cc)
end