OBJECT
EmailSequenceSettings
link GraphQL Schema definition
- type EmailSequenceSettings {
- # Sequence-wide reactions to recipient replies, unsubscribes, bounces, and custom
- # conditions.
- : EmailSequenceGlobalActionsSettings!
- # IANA time-zone name (for example Europe/Bratislava) in which the sending window
- # and active dates are interpreted.
- : String!
- # Weekdays on which emails may be sent, given as numbers 1 (Monday) through 7
- # (Sunday).
- : [Int!]!
- # Start of the daily sending window, expressed as minutes after midnight (0-1440).
- : Int!
- # End of the daily sending window, expressed as minutes after midnight (0-1440);
- # must be greater than fromTimeOfDay.
- : Int!
- # When true, each email starts its own conversation thread; when false, all emails
- # of one enrollment share a single thread.
- : Boolean!
- # When true, the sequence starts the process given by triggerProcessId for records
- # it creates.
- : Boolean
- # Identifier of the process to start when triggerProcess is enabled.
- : UUID
- # Date from which the sequence is allowed to send; earlier scheduling waits until
- # this date.
- : Date
- # Date after which the sequence stops sending.
- : Date
- # When true, records still enrolled after activeTo passes are automatically
- # removed from the sequence.
- : Boolean
- }