module Mailgun

  # Public constants used throughout
  class Chains

    # maximum campaign ids per message
    MAX_CAMPAIGN_IDS = 3

    # maximum tags per message
    MAX_TAGS = 3

    # maximum recipients per message or batch
    MAX_RECIPIENTS = 1000

  end
end
