Tulip Media

Entrepreneurial thoughts

Change WordPress Default Sender

Little quick tip for users of the CMS WordPress, tired of seeing the function wp_mail send automatic messages to their users under the email ““. To overcome this problem, there are unfortunately no settings in the backend of WordPress. So, here is a little filter seen on Butterblog.com, the author of the WP-Members plugin, which allows you to customize not only the default WordPress sending email address, but also the sender name.

We will filter wp_mail_from And wp_mail_from_name, by editing the file functions.php.

functions.php:

add_filter( 'wp_mail_from', 'my_mail_from' );
function my_mail_from($email)
{ return '’; }
add_filter( 'wp_mail_from_name', 'my_mail_from_name' );
function my_mail_from_name($name)
{ return 'My Name'; }

 

My latest tweets

New shorts on Blooness 👉 Ultimate top of the best proteins: egg / beef / veal / poultry / lamb / offal / fish / shellfish / mature cheese / legumes
https://buff.ly/3Si8kfu

New shorts on Blooness 👉 Adding collagen to protein meals or eating cartilage with meat is one of the best ways to maintain muscle mass in terms of longevity.
https://buff.ly/4f8kMbs

New shorts on Blooness 👉 Secret of longevity: find meat from animals that are not mainly fed soybean meal, sunflower, corn, and other cereals.
https://buff.ly/3YpbrX5

Load more

Don't miss business advice by email

No spam, just an email when new content is published.

One Response

  1. Good morning,

    which functions.php file should you modify exactly because there are several?

    Thanks in advance

Leave a Reply

Your email address will not be published. Required fields are marked *

en_USEN