BypassListManagement

public struct BypassListManagement : Encodable

The BypassListManagement class allows you to bypass all unsubscribe groups and suppressions to ensure that the email is attempted to be delivered to every single recipient. This should only be used in emergencies when it is absolutely necessary that every recipient receives your email. Ex: outage emails, or forgot password emails.

  • A bool indicating if the setting should be toggled on or off.

    Declaration

    Swift

    public let enable: Bool
  • Initializes the setting with a flag indicating if its enabled or not.

    Declaration

    Swift

    public init(enable: Bool = true)

    Parameters

    enable

    A bool indicating if the setting should be toggle on or off (default is true).