[ad_1]
PS. It seems it only happens with the ‘New abandoned cart saved! 🛒</img>’ emails.
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' );
