Change Sender Name And Email in Outgoing WordPress Email.

To change the sender name and email in outgoing WordPress emails, you can use the `wp_mail_from` and `wp_mail_from_name` filters. Here’s how you can do it:

1. Open your theme’s `functions.php` file or create a custom plugin file.

2. Add the following code to modify the sender name and email:

 

/**
 * Change the sender name in outgoing emails.
 *
 * @param string $from_name The current sender name.
 * @return string The modified sender name.
 */
function change_email_sender_name( $from_name ) {
    // Replace 'Your Sender Name' with your desired sender name.
    return 'Your Sender Name';
}
add_filter( 'wp_mail_from_name', 'change_email_sender_name' );

/**
 * Change the sender email address in outgoing emails.
 *
 * @param string $from The current sender email.
 * @return string The modified sender email.
 */
function change_email_sender_email( $from ) {
    // Replace 'your-email@example.com' with your desired sender email.
    return 'your-email@example.com';
}
add_filter( 'wp_mail_from', 'change_email_sender_email' );

3. Customize the `Your Sender Name` and `your-email@example.com` values with your desired sender name and email address.

4. Save the changes to the `functions.php` file or activate the custom plugin.

After implementing these changes, outgoing WordPress emails, such as contact form submissions or notifications, will use the updated sender name and email address.

Related Blogs

Upload Any File in My Account Registration Form

To allow users to upload a file in the My Account registration form in WooCommerce, you’ll need to customize the registration form and add a file upload field. We’ll use a custom function and a hook to achieve this. Here’s a step-by-step guide:

WooCommerce: Check if Product Category is in the Cart

To check if a specific product category is in the cart during the `woocommerce_before_cart` action hook, you can use a similar approach as in the previous answer. However, in this case, you need to use the `woocommerce_before_cart_contents` action hook, which fires before the cart items are displayed on the cart page. Here’s how you can achieve this:

Request A Quote

Privacy Overview

This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.