Was this ever fixed? We are using WP Discuz & the Mentions add on. It looks like the Mentions are coming from my email address since I'm the main admin listed on the site, but we need them to come from a no-reply address. How do I fix this??
Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed. We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Hi @michaelhyattco,
This issue is already fixed in the wpDiscuz plugin. The problem comes from the wpDiscuz User & Comment Mentioning add-on. We'll fix it in the upcoming version of the wpDiscuz User & Comment Mentioning add-on.
As a temporary solution please add the following code in your current active theme's functions.php file
add_filter('wp_mail_from', function ($email){
return 'no-reply@blogname.com';
});
Don't forget to change the red marked code (set the right email) before using.