OBJECT

ProcessNodeEmail

link GraphQL Schema definition

  • type ProcessNodeEmail 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
  • # Account the email is sent from: the trigger actor, a company email, the record
  • # owner, or the approver.
  • sender: ProcessNodeEmailSender!
  • # Company email account to send from. Set when the sender is a company email.
  • senderCompanyEmailId: UUID
  • # Visibility of the sent email to other users in the space.
  • shareMode: ShareModeEnum
  • # When true, link the sent email to the triggered record.
  • linkTriggerEntity: Boolean
  • # When true, link the sent email to the account and contact records matching the
  • # recipient addresses.
  • linkRecipients: Boolean
  • # Whether the email body is treated as HTML rather than plain text.
  • isHtmlTemplate: Boolean
  • }