OBJECT

EmailSequenceNodeEmail

link GraphQL Schema definition

  • type EmailSequenceNodeEmail implements EmailDataInterface {
  • # Primary recipients of the email. Addresses may contain personalization tags
  • # resolved from the triggered record.
  • recipients: [SendEmailRecipient!]!
  • # Carbon-copy recipients of the email. Addresses may contain personalization tags
  • # resolved from the triggered record.
  • cc: [SendEmailRecipient!]!
  • # Blind carbon-copy recipients of the email. Addresses may contain personalization
  • # tags resolved from the triggered record.
  • bcc: [SendEmailRecipient!]!
  • # Subject line of the email. May contain personalization tags resolved from the
  • # triggered record.
  • subject: String!
  • # HTML body of the email. May contain personalization tags resolved from the
  • # triggered record.
  • body: String!
  • # Email template to use for the message. When set, the template supplies the
  • # subject and body.
  • emailTemplateId: UUID
  • # Stored files attached to the email.
  • attachments: [UUID!]!
  • # Signature appended to the email body.
  • signature: String
  • # True when the chosen template is an HTML template rather than a plain-text one.
  • isHtmlTemplate: Boolean
  • # When true, the sent email is linked to the record that triggered the sequence.
  • linkTriggerEntity: Boolean
  • # When true, the sent email is linked to the recipient records it is addressed to.
  • linkRecipients: Boolean
  • # Who the email is sent as. ActorEmail uses the user running the sequence,
  • # CompanyEmail uses a shared company mailbox, and RecordOwnerEmail uses the owner
  • # of the triggered record.
  • sender: EmailSequenceNodeEmailSender!
  • # Company email account used as the sender when the sender is set to CompanyEmail.
  • senderCompanyEmailId: UUID
  • # Sharing visibility applied to the sent email. Standard follows default sharing,
  • # Private restricts it to the owner, AllView grants everyone read access, and
  • # AllEdit grants everyone edit access.
  • shareMode: ShareModeEnum
  • }