Hey Friends!!
Notice how WPMU sends email and the from-email address and name is something like WordPress(wordpress@yoursite.com) Annoying isn’t it? Well here’s the fix!
Just place this in your theme’s function.php file
function my_fromemail($email) {
$wpfrom = get_option('admin_email');
return $wpfrom;
}
function my_fromname($email){
$wpfrom = get_option('blogname');
return $wpfrom;
}
add_filter('wp_mail_from', 'my_fromemail');
add_filter('wp_mail_from_name', 'my_fromname');
Please Tweet