ENUM

EmailStatus

The status of an Email.

link GraphQL Schema definition

  • enum EmailStatus {
  • # The email was sent successfully
  • SENT
  • # The email was bounced by the recipients mail server
  • BOUNCED
  • # The email was rejected by the recipients mail server
  • REJECTED
  • # The email failed to send through the mail processor. This indicates a fatal
  • # error
  • FAILED
  • # The email was opened by the recipient
  • OPENED
  • # The email was sent, but the receiving server has indicated that emails are being
  • # delivered to it too quickly and that Mandrill should slow down sending
  • # temporarily
  • DEFERRED
  • # The email was unable to be delivered because the recipient's email address is
  • # invalid
  • HARD_BOUNCED
  • # The email was unable to be delivered because of a temporary issue with the
  • # recipient's inbox
  • SOFT_BOUNCED
  • # The email recipient clicked a link in the email
  • CLICKED
  • # The email recipient marked the email as spam
  • MARKED_SPAM
  • # The email recipient unsubscribed from seeing any additional emails
  • UNSUBBED
  • # The email has been processed and is in progress.
  • IN_PROGRESS
  • }