How can I edit the [wordpress@example.com] shown as part of title email of user registration? I want to edit the [wordpess@example.com] to a custom one by removing the "wordpress".
Thanks for your kind effort.
Regards
How can I edit the [wordpress@example.com] shown as part of title email of user registration? I want to edit the [wordpess@example.com] to a custom one by removing the "wordpress".
Thanks for your kind effort.
Regards
It's a WordPress related thing, not actually a BuddyPress. So below is the code for that:
add_filter( 'wp_mail_from', 'change_mail_from');
function change_mail_from($from_email){
$from_email = 'support@example.com';
return $from_email;
}
add_filter( 'wp_mail_from_name', 'change_mail_from_name');
function change_mail_from_name($from_name){
$from_name = 'Support Team';
return $from_name;
}
Just modify $from_email
and $from_name
variable according to your needs and insert in either your plugin or functions.php
of a theme.