WP Better Emails

Modificar el plantilla email cuenta de email y nombre de los emails de wordpres:
https://wordpress.org/plugins/wp-better-emails/


Modificar la cuenta de email y nombre de los emails de wordpres:
(functions.php)

add_filter('wp_mail_from', 'new_mail_from');
add_filter('wp_mail_from_name', 'new_mail_from_name');

function new_mail_from($old) {
return 'email@email.com';
}
function new_mail_from_name($old) {
return 'Nombre';
}