verifyEmailAddress
inline suspend fun SesClient.verifyEmailAddress(crossinline block: VerifyEmailAddressRequest.Builder.() -> Unit): VerifyEmailAddressResponse
Deprecated. Use the VerifyEmailIdentity
operation to verify a new email address.
Samples
fun main() {
//sampleStart
// The following example starts the email address verification process with Amazon SES
sesClient.verifyEmailAddress {
emailAddress = "user@example.com"
}
//sampleEnd
}