getEmailAddressInsights

Provides validation insights about a specific email address, including syntax validation, DNS record checks, mailbox existence, and other deliverability factors.

Samples


fun main() { 
   //sampleStart 
   // Performs email validation against an email address.
val resp = sesV2Client.getEmailAddressInsights {
    emailAddress = "hello@example.com"
} 
   //sampleEnd
}