How to change Sender's Email in WooCommerce?

后端 未结 3 660
旧时难觅i
旧时难觅i 2020-12-19 18:03

WooCommerce -> Settings -> EmailS -> the first two options, \"FROM: Name, FROM: Email\", are the Sender\'s email and name. When an order i

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-19 18:48

    I think you can also use wordpress hooks for that:

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

提交回复
热议问题