class Mail::Matchers::HasSentEmailMatcher

def to(recipient_or_list)

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