EmailDeliveryConfig
How this API instance is configured to send mail. Read it before concluding that a missing email is a bug: an instance with sendingEnabled=false composes every message and hands none of them to SES.
type EmailDeliveryConfig {
sendingEnabled: Boolean!
fromAddress: String!
configurationSet: String
region: String!
suppressedDomains: [String!]!
}
Fields
EmailDeliveryConfig.sendingEnabled ● Boolean! non-null scalar
SEND_EMAILS. False means nothing reaches SES from this instance.
EmailDeliveryConfig.fromAddress ● String! non-null scalar
The From address (EMAIL_FROM).
EmailDeliveryConfig.configurationSet ● String scalar
SES_CONFIGURATION_SET. Null or empty means sends carry no configuration set, so SES publishes NO delivery or bounce events for them and this tier learns nothing about its own mail.
EmailDeliveryConfig.region ● String! non-null scalar
AWS_REGION used for SES.
EmailDeliveryConfig.suppressedDomains ● [String!]! non-null scalar
Domain suffixes refused before SES is consulted (EMAIL_SUPPRESS_DOMAINS).
Returned By
emailDeliveryConfig query