Viewing 1 replies (of 1 total)
  • Hello @face2005,

    I am afraid, this part is the default system of WordPress. If you deactivate WPUF, you will still see this available in the email that is fired from WordPress.

    You will be required to edit the default system of WordPress to remove this and also you can use this code to change the system:

    // Function to change email address
     
    function wpb_sender_email( $original_email_address ) {
        return 'tim.smith@example.com';
    }
     
    // Function to change sender name
    function wpb_sender_name( $original_email_from ) {
        return 'Tim Smith';
    }
     
    // Hooking up our functions to WordPress filters 
    add_filter( 'wp_mail_from', 'wpb_sender_email' );
    add_filter( 'wp_mail_from_name', 'wpb_sender_name' );

    Regards,

Viewing 1 replies (of 1 total)

The topic ‘Account Activation’ is closed to new replies.