How to Change the default wordpress@ email address
2- Copy and paste the following lines:
// Change default WordPress email address
add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');
function new_mail_from($old) {
return
}
function new_mail_from_name($old) {
return 'Your Name';
}
Replace ‘