• Using it with MemberPress. There is not much to configure but it works like a charm, it’simple, no HTML, just plain text but it’s better than the New User Approve plugin which exposes the iThemes Hide Back End URL to users when their user account is approved.

Viewing 1 replies (of 1 total)
  • Thread Starter eduacute

    (@eduacute)

    Add this to functions.php and its even better… tested it and it works

    // Function to change email address
    function wpb_sender_email( $original_email_address ) {
        return 'your-email@something';
    }
     
    // Function to change sender name
    function wpb_sender_name( $original_email_from ) {
        return 'your-name';
    }
     
    // Hooking up our functions to WordPress filters 
    add_filter( 'wp_mail_from', 'wpb_sender_email' );
    add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
Viewing 1 replies (of 1 total)
  • The topic ‘It’s simple and it works 100%’ is closed to new replies.