Skip to main content

EmailDeliverability

Everything this API knows about whether an address can be emailed, and why.

type EmailDeliverability {
email: String!
sendable: Boolean!
suppressedDomain: Boolean!
status: EmailStatusRecord
events: [EmailEventRecord!]!
}

Fields

EmailDeliverability.email ● String! non-null scalar

EmailDeliverability.sendable ● Boolean! non-null scalar

Whether a send to this address would be attempted right now. False for a permanent bounce, a complaint, or a transient bounce inside its 24-hour cool-off.

EmailDeliverability.suppressedDomain ● Boolean! non-null scalar

Whether this address is refused before SES is consulted at all, because its domain is in EMAIL_SUPPRESS_DOMAINS.

EmailDeliverability.status ● EmailStatusRecord object

Null means SES has never reported anything about this address, which is treated as sendable.

EmailDeliverability.events ● [EmailEventRecord!]! non-null object

Most recent events first.

Returned By

emailDeliverability query