Viewing 3 replies - 1 through 3 (of 3 total)
  • haveboard

    (@haveboard)

    bump

    petercralen

    (@petercralen)

    Hi,

    The plugin does not provide this feature.
    You can change the default name and email simply adding this snippet in your function.php or snippet plugin

    // Change default WordPress email address
    add_filter('wp_mail_from', 'new_mail_from');
    add_filter('wp_mail_from_name', 'new_mail_from_name');
    
    function new_mail_from($email) {
    return '[email protected]';
    }
    function new_mail_from_name($name) {
    return 'Your Name';
    }

    Just change the email and name for whatever you wish

    Thread Starter scottbothel

    (@scottbothel)

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changes from address?’ is closed to new replies.