EmailContact
Email contact information with flexible identification methods.
Represents an email recipient or sender with multiple identification options including direct email addresses, system user references, and contact database lookups for comprehensive contact management.
type EmailContact {
email: String
name: String
contactId: Int
customerId: Int
adminUserId: Int
}
Fields
EmailContact.email
● String
scalar
Direct email address for contact identification.
Valid email address used for message delivery when direct email addressing is preferred over system user lookups.
EmailContact.name
● String
scalar
Display name for personalized communication.
Human-readable name that appears alongside the email address in email clients, enhancing the personal touch of communications.
EmailContact.contactId
● Int
scalar
Contact database identifier for recipient lookup.
References a contact record in the contact management system, enabling automatic email address and name resolution from the contact database.
EmailContact.customerId
● Int
scalar
Customer database identifier for recipient lookup.
References a customer record in the customer management system, enabling automatic email address and name resolution from customer data.
EmailContact.adminUserId
● Int
scalar
Administrative user identifier for recipient lookup.
References an admin user account in the user management system, enabling automatic email address and name resolution from admin user data.
Member Of
EmailTemplate
object