INTERFACE
EmailDataInterface
link GraphQL Schema definition
- interface EmailDataInterface {
- # Primary recipients of the email. Addresses may contain personalization tags
- # resolved from the triggered record.
- : [SendEmailRecipient!]!
- # Carbon-copy recipients of the email. Addresses may contain personalization tags
- # resolved from the triggered record.
- : [SendEmailRecipient!]!
- # Blind carbon-copy recipients of the email. Addresses may contain personalization
- # tags resolved from the triggered record.
- : [SendEmailRecipient!]!
- # Subject line of the email. May contain personalization tags resolved from the
- # triggered record.
- : String!
- # HTML body of the email. May contain personalization tags resolved from the
- # triggered record.
- : String!
- # Email template to use for the message. When set, the template supplies the
- # subject and body.
- : UUID
- # Stored files attached to the email.
- : [UUID!]!
- # Signature appended to the email body.
- : String
- }