Hello everyone,
Is it possible to add one or more email addresses to which all notifications that come to the site administrator’s email will be sent?
Thank you
Hello everyone,
Is it possible to add one or more email addresses to which all notifications that come to the site administrator’s email will be sent?
Thank you
Hi,
You can configure this on the email service side by adding a forward filter, please check this sample doc Gmail Help
I hope this is helpful to you.
there is no other way via wordpress?
Hi,
Unfortunately, we can’t give you more details, as our clients have always set this up through third-party email services. But, if you need to set this up via WordPress, you will need a custom implementation.
HI,
thank you very much, in case it helps I found this script that does exactly what I needed
function custom_wp_mail_filter($args) {
$args['to'] = 'your e-mail';
return $args;
}
add_filter('wp_mail', 'custom_wp_mail_filter');
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.