• Resolved pbpiotr

    (@pbpiotr)


    Hello,

    Nice work with plugin. Where file to change sender name and sender email?

    Actually default is sender name “WordPress” and sender email “[email protected]

    Best regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter pbpiotr

    (@pbpiotr)

    Ok its done. I add to php code and work.

    // Function to change email address

    function wpb_sender_email( $original_email_address ) {
    return ‘[email protected]’;
    }

    // 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’ );

    Plugin Contributor vadim8vz

    (@vadim8vz)

    Excellent work. Thank you. A few days later I will describe the solution in the FAQ. I think other users might be helpful.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change sender name and email’ is closed to new replies.