By default, WordPress will send emails from a wordpress@yourdomain.com email address. To change this to your or any other email, use the following.
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
1
<?php
2
/*
3
Change default FROM email address and name
4
http://www.beliefmedia.com/code/wp-snippets/change-wp-email
5
*/
6
7
8
return 'name@yourdomain.com';
9
}
10
The second filter changes the 'from' name (the first changed the email address).
1
<?php
2
/*
3
Change default FROM email address and name
4
http://www.beliefmedia.com/code/wp-snippets/change-wp-email
5
*/
6
7
8
return 'YourName';
9
}
10