INPUT_OBJECT

UpdateEmailMessageContentMutationInput

The input object that defines the fields for the updateEmailMessageContent mutation.

link GraphQL Schema definition

  • input UpdateEmailMessageContentMutationInput {
  • # A supported language.
  • language: Language
  • # A short sentence that will be shown as a preview in compatible email clients.
  • inbox_preview: String
  • # The subject.
  • subject: String
  • # The body.
  • body: Text
  • # A list of file IDs to be associated with this object. These must first have been
  • # uploaded to the /files endpoint and must be currently unassociated.
  • files: [AssociateFileMutationInput]
  • # Setting this value to `true` will set `inbox_preview` to null.
  • unset_inbox_preview: Boolean
  • }

link Require by