Skip to content

CustomEmail

A custom email

Fields

created_at · String! · required · created at
cursor · Cursor! · required · Pagination cursor
email_type · String · type of email
greeting · String · email greeting
id · ID! · required · The unique identifier of the email
message_body · String · message body
name · String · subject of email
reactivation_wait_days · String · reactivation_wait_days
related_object · CustomEmailRelatedObject · Appointment Type, Program or Package object
subject · String · subject of email
updated_at · String! · required · updated at
user_id · ID · user id of provider

Used By

Definition

"""
A custom email
"""
type CustomEmail {
"""
created at
"""
created_at: String!
"""
Pagination cursor
"""
cursor: Cursor!
"""
type of email
"""
email_type: String
"""
email greeting
"""
greeting: String
"""
The unique identifier of the email
"""
id: ID!
"""
message body
"""
message_body: String
"""
subject of email
"""
name: String
"""
reactivation_wait_days
"""
reactivation_wait_days: String
"""
Appointment Type, Program or Package object
"""
related_object: CustomEmailRelatedObject
"""
subject of email
"""
subject: String
"""
updated at
"""
updated_at: String!
"""
user id of provider
"""
user_id: ID
}