• On a clients WPMU website, the FROM name field didn’t work at all. It was overridden with one of the sites site title for whatever reason.

    What I did for now, was to add (to the site that didn’t have the correct FROM name) the following to functions.php:

    add_filter('wp_mail_from_name', 'override_mandrill_from_name', 10, 1);
    
    function override_mandrill_from_name($from_name) {
            return 'name'; // Replace 'name' with the correct FROM name here.
    }

    https://wordpress.org/plugins/wpmandrill/

  • The topic ‘FROM name not working as expected on WPMU’ is closed to new replies.