How can I determine if a user has clicked on the link in the verification email sent by Amazon SES? Looking at the docs, I only see a function to list every verified address. That seems fairly inelegant and inefficient if there are a lot of validated emails.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Oh, it appears that this is not how I should be using Amazon SES. It appears from my further research that you are supposed to only verify a few addresses that belong to you and send emails to unverified user addresses. I will have to implement my own email verification system for the purposes of verifying the address for my own system.

link|improve this answer
feedback

There is a function to determine the Email address are verified or not.

if (!self::ValidateAddress($address))
$this->SetError($this->Lang('invalid_address').': '. $address);
if ($this->exceptions)
throw new phpmailerException($this->Lang('invalid_address').': '.$address);}
return false;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.