verifyEmailIdentity
inline suspend fun SesClient.verifyEmailIdentity(crossinline block: VerifyEmailIdentityRequest.Builder.() -> Unit): VerifyEmailIdentityResponse
Adds an email address to the list of identities for your Amazon SES account in the current Amazon Web Services Region and attempts to verify it. As a result of executing this operation, a verification email is sent to the specified address.
You can execute this operation no more than once per second.
Samples
fun main() {
//sampleStart
// The following example starts the email address verification process with Amazon SES
sesClient.verifyEmailIdentity {
emailAddress = "user@example.com"
}
//sampleEnd
}