GraphQL OBJECT

Email

Email generated for the purchase.

link Definition

  • type Email {
  • # Email type that was sent.
  • mailType: MailType
  • # Unique ID of the email.
  • id: Long
  • # Email address from where the email was sent.
  • fromAddress: String
  • # Email address to where the email was delivered.
  • toAddress: String
  • # Date and time when the email was delivered.
  • deliveryTime: DateTime
  • # Date and time when the email was created.
  • creationTime: DateTime!
  • # Reason the email was not delivered.
  • bounceReason: String!
  • # Status of the email.
  • status: MailStatus
  • # Plain text body of the email.
  • bodyPlain: String
  • # HTML body of the email.
  • bodyHtml: String
  • }