EmailTemplateUpdateInput
No description
input EmailTemplateUpdateInput {
names: [LocalizedStringInput!]
contents: [LocalizedTemplateContentInput!]
customQuery: String
queryVariables: String
subjects: [LocalizedStringInput!]
from: EmailSenderInput
tos: [EmailContactInput!]
ccs: [EmailContactInput!]
bccs: [EmailContactInput!]
}
Fields
EmailTemplateUpdateInput.names
● [LocalizedStringInput!]
list input
The name of the template per given language
EmailTemplateUpdateInput.contents
● [LocalizedTemplateContentInput!]
list input
Uploaded handlebars template content, per given language
EmailTemplateUpdateInput.customQuery
● String
scalar
GraphQL query to be executed before rendering the template to fetch additional data not in the original event payload.
EmailTemplateUpdateInput.queryVariables
● String
scalar
Variables that are use in the custom query, can use handlebars variables. Has to be a valid JSON string after rendering
EmailTemplateUpdateInput.subjects
● [LocalizedStringInput!]
list input
Subject for the email per given language, supports handlebars variables
EmailTemplateUpdateInput.from
● EmailSenderInput
input
From EmailContact for the email
EmailTemplateUpdateInput.tos
● [EmailContactInput!]
list input
To EmailContacts for the email
EmailTemplateUpdateInput.ccs
● [EmailContactInput!]
list input
CC EmailContacts for the email
EmailTemplateUpdateInput.bccs
● [EmailContactInput!]
list input
BCC EmailContacts for the email
Member Of
emailTemplateUpdate
mutation