Hi Friends,
I tracked down another bug relating to the forum ‘From’ name and wp_mail_from_name filter.
PROBLEM:
From Name configured in forum appears on outgoing emails from WordPress even though emails were not sent by forum.
STEPS TO REPRODUCE:
1. Configure forum From Name as ‘foo’
2. Register as a new user on the WP site
3. Observe that email originates from ‘foo’
RECOMMENDED FIX:
Enable wp_mail_from_name action only during emails that originate from forum. For an implementation reference, see how the s2member plugin calls add_action(‘wp_mail_from_name’) and remove_action() before and after sending its emails.