EmailSender
Email sender information with localization support.
Defines the sender details for email templates including email address and localized display names for multilingual email communications and personalized sender identification.
type EmailSender {
email: String!
names: [LocalizedString!]
}
Fields
EmailSender.email
● String!
non-null scalar
Sender email address for outgoing messages.
Valid email address that appears in the 'From' field of sent emails, must be authorized for sending through the email system.
EmailSender.names
● [LocalizedString!]
list object
Localized sender display names.
Multilingual display names that appear alongside the sender email address in email clients, enabling personalized sender identification across different languages and regions.
Member Of
EmailTemplate
object