How to hook wp_mail to add a custom email as BCC for each sent email?
You have multiple options: The function is pluggable (i.e., you could write up your own wp_mail function and make it do what you’d like). There’s the phpmailer_init hook, which gives you access to the $phpmailer object (and thus lets you AddBcc another email address. There’s the wp_mail hook, which gives you (amongst other things) access … Read more