the “from” email is not my configured sender email address
-
I am hosting with cloudways and using SendinBlue as my smtp for emails
I am using the Elementor Builder with Astra ThemeI have set up a sender (DIY Naturally – [ redundant link removed ]), but when emails are sent, the “from” address shows as [ email deleted ] and the “reply to” as [ email deleted ]
My website was previously hosted on another domain, but it has been moved over to my current domain for more than a year. I have already logged a query with SendinBlue and they believe the problem must be wordpress/woocommerce related.
When researching possible issues, I have found a fix where adding the following code to the functions.php file were supposed to rectify the issue, but even after implementing this, I still have the same issue.
**The code added to functions.php is as follow:// Function to change email address function wpb_sender_email( $original_email_address ) { return '<em>[ email deleted ]</em>'; } // Function to change sender name function wpb_sender_name( $original_email_from ) { return 'DIY Naturally'; } // Hooking up our functions to WordPress filters add_filter( 'wp_mail_from', 'wpb_sender_email' ); add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
Please can you advise if this issue can be rectified via a setting in wordpress that I maybe haven’t found? Or is there maybe something else causing this issue?
Your help will be much appreciated.
- This topic was modified 2 years, 10 months ago by . Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic
- This topic was modified 2 years, 10 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘the “from” email is not my configured sender email address’ is closed to new replies.