Emails from your site name
Emails WordPress sends come from your site’s name instead of “WordPress”.
<?php
add_filter(
'wp_mail_from_name',
static function ( $name ) {
// Only replace the default; plugins that set a name keep theirs.
return 'WordPress' === $name ? wp_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ) : $name;
}
);
In these packs
- Email: Emails from your name and address, sent through SMTP, and fewer notification emails.