Gary Kealy

Results 1 comments of Gary Kealy

You can use the `new_user_approve_email_header` filter. ```php add_filter( 'new_user_approve_email_header', 'my_user_approve_email_header' ); function my_user_approve_email_header() { return array( 'From: "Me" \n', ); } ``` Returning and empty string will let WordPress handle...