Skip to main content

EventToEmailConfig

The configuration for sending an email based on a template when an event gets triggered which has the emailTemplateId as a field to identify the template to use

type EventToEmailConfig implements IEventActionConfig {
id: String!
trigger: EventTrigger!
code: String
createdAt: DateTime!
lastModifiedAt: DateTime!
createdBy: Int
lastModifiedBy: Int
names(
language: String
): [LocalizedString!]!
emailTemplateId: String!
}

Fields

EventToEmailConfig.id ● String! non-null scalar

The ID of the event, uuid v7 format

EventToEmailConfig.trigger ● EventTrigger! non-null enum

The event to trigger the action defined in the event action config

EventToEmailConfig.code ● String scalar

The event code to use when the trigger is [CUSTOM_EVENT]

EventToEmailConfig.createdAt ● DateTime! non-null scalar

The creation date of this EventActionConfig

EventToEmailConfig.lastModifiedAt ● DateTime! non-null scalar

The last modified date of this EventActionConfig

EventToEmailConfig.createdBy ● Int scalar

ID of the user who created this EventActionConfig

EventToEmailConfig.lastModifiedBy ● Int scalar

ID of the user who last modified this EventActionConfig

EventToEmailConfig.names ● [LocalizedString!]! non-null object

EventToEmailConfig.names.language ● String scalar

Filter for filtering LocalizedString entities by language

EventToEmailConfig.emailTemplateId ● String! non-null scalar

The ID of the email template to use

Interfaces

IEventActionConfig interface

Returned By

eventToEmailConfigCreate mutation ● eventToEmailConfigUpdate mutation