I need to verify email addresses for my customers so that I can send emails on their behalf. AWS SES has a sender verification feature where you need to send the email address in the request body and SES will send a verification email on that email address with a confirmation link.
We can also configure redirection URLs for success and failure while setting up a custom email template.
The issue is that I'm not getting any parameters when it redirects to my custom URL. I need at least the email_id in the redirected URL params so that I can mark the email verified in my app.