deliciousbrains / wp-offload-ses-lite

WP Offload SES Lite sends all outgoing WordPress emails through Amazon Simple Email Service (SES) instead of the local wp_mail() function.
https://wordpress.org/plugins/wp-ses/
13 stars 11 forks source link

Offload SES Lite - Verified sender is receiving a message of unverified e-mail #23

Open indoredesign opened 3 years ago

indoredesign commented 3 years ago

I've a e-mail on the verified senders list of Offload SES Lite, but I keep receiving an erro message that the same e-mail is unverified.

How can I solve this issue?

thanks

alexaandru commented 3 years ago

I'm getting the same error. Domain is verified, but I keep getting this error.

cadentic commented 3 years ago

hi i am getting similer error

oitent commented 3 years ago

Check #15 Same issue.

monsieurborges commented 2 years ago

Guys @indoredesign @alexaandru @cadentic @oitent , were you able to solve this?

oitent commented 2 years ago

Really sorry. It's been a while. I can't remember my solve, but had something to do with proper configuration. Maybe try verifying the email address with SES as well…

tedstur commented 1 year ago

This is happening to our site. Does anybody have a solution here? Thanks!

oitent commented 1 year ago

This is happening to our site. Does anybody have a solution here? Thanks!

It's probably the email configured on woocommerce or admin settings that is different from the one you've configured on AWS SES.

monsieurborges commented 1 year ago

I faced the same problem and I managed to fix it reviewing the AWS IAM Policy for Amazon SES.

Please, double check your configuration:

More details:

crobbinsdg commented 1 year ago

If you are managing your SES identities outside of the plugin and wish to remove the errors you can hook into the transient used to add the unverified sender notices.

// Prevent Offload SES Lite from generating unverified sender notices
add_filter('transient_wposes_unverified_senders', function($transient){ return false; });