class Mail::Matchers::HasSentEmailMatcher

def cc(recipient_or_list)

def cc(recipient_or_list)
  @copy_recipients ||= []
  if recipient_or_list.kind_of?(Array)
    @copy_recipients += recipient_or_list
  else
    @copy_recipients << recipient_or_list
  end
  self
end