• hi
    when WP sends an email with the new registration details it has ‘wordpress’ in the ‘from’ field in the email software.

    how can I change the ‘from’ to display the website name

Viewing 1 replies (of 1 total)
  • you could add a filter to functions.php of your theme:

    //notification email name change
    add_filter('wp_mail_from_name','custom_email_from_name');
    function custom_email_from_name($name) {
    $name = 'yourwebsitename';
    return $name;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘how can I change the 'from' to display the website name’ is closed to new replies.