Comments 2Robin started the conversationJanuary 28, 2023 at 8:46amHey GuysNotifications like RSVP are sent from "wordpress@domain". How can I change that to like "events@domain"?Cheers, Robin 881Zhivko repliedJanuary 30, 2023 at 2:19pmYou could do it from the filter I've sent you earlier: add_filter('stec_wp_mail_headers', function() { $headers = []; $headers[] = 'Cc: [email protected]'; $headers[] = 'Cc: [email protected]'; return $headers; }); you can add "from" key. add_filter('stec_wp_mail_headers', function() { $headers = []; $headers[] = 'From: Me Myself <[email protected]>'; $headers[] = 'Cc: [email protected]'; $headers[] = 'Cc: [email protected]'; return $headers; }); Stachethemes Developer 2Robin repliedJanuary 31, 2023 at 5:44amperfect, thanks! Sign in to reply ...
Hey Guys
Notifications like RSVP are sent from "wordpress@domain". How can I change that to like "events@domain"?
Cheers, Robin
You could do it from the filter I've sent you earlier:
you can add "from" key.
Stachethemes Developer
perfect, thanks!