Custom WordPress Email From Name and Address
Changes the default WordPress email sender name and address to your site name and a noreply alias.
PHPby SnipCraft
php
<?php
add_filter( 'wp_mail_from', 'scseed_custom_mail_from_address' );
function scseed_custom_mail_from_address() {
$host = wp_parse_url( home_url(), PHP_URL_HOST );
return 'noreply@' . sanitize_text_field( $host );
}
add_filter( 'wp_mail_from_name', 'scseed_custom_mail_from_name' );
function scseed_custom_mail_from_name() {
return get_bloginfo( 'name' );
}#admin#branding#email#notifications