Ready to Transform Your Online Presence? Let's Get Started!

How to Change Sender Name and Email Address in WordPress Email

Do you want to change the default sender name ‘WordPress’ to your custom sender name for outgoing WordPress emails?

Do you want to change the default sender email address to your custom sender email address?

In this article, we will have added a simple code snippet, you have to put the given code in your currently active WordPress theme’s functions.php file.

// Function to change email address
function wpb_sender_email( $original_email_address ) {
    return 'your@example.com';
}
 
// Function to change sender name
function wpb_sender_name( $original_email_from ) {
    return 'Your Name';
}
 
// Hooking up our functions to WordPress filters 
add_filter( 'wp_mail_from', 'wpb_sender_email' );
add_filter( 'wp_mail_from_name', 'wpb_sender_name' );