How to change WordPress default FROM name & email address

Paste the following code into functions.php file of your in-use theme. Don’t forget to put the desired email address in new_mail_from function(line 5) and desired name in new_mail_from_name function (line 8). If you do not know how to do it send me a message and i will do it for you for just $5.

[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 ‘admin@yourdomain.com’;
}
function new_mail_from_name($old) {
return ‘Your Blog Name’;
}[/php]

Leave a Reply