• Resolved Andris

    (@dinz)


    Hi. It seems the plugin is sending email from WordPress@Unknown even though in ‘Recovery > WordPress > General email settings’ I’ve set an email address with the site’s domain. The emails are failing to send when using AWS SES because the sending domain ‘Unkown’ isn’t registered (of course).

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Andris

    (@dinz)

    PS. It seems it only happens with the ‘New abandoned cart saved! ??</img>’ emails.

    Plugin Contributor Nauriskolats

    (@nauriskolats)

    Hi Andris (@dinz)

    Thank you for your message. So it seems like your $_SERVER['SERVER_NAME'] variable is empty therefore CartBounty is unable to get correct domain name.

    To fix this you can use cartbounty_from_email filter to set the correct From email name like so:

    function cartbounty_change_from_email( $html ){
          return '[email protected]';
    }
    add_filter( 'cartbounty_from_email', 'cartbounty_change_from_email' );
    Thread Starter Andris

    (@dinz)

    Paldies Nauriskolats!

    Plugin Contributor Nauriskolats

    (@nauriskolats)

    ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘‘From’ email setting not working’ is closed to new replies.