dashed-slug.net › Forums › General discussion › How to change email › Reply To: How to change email
May 10, 2018 at 6:17 am
#3040
alexg
Keymaster
Hi, the plugin sends emails with the wp_mail()
function. So you could to follow the instructions given here:
You could hook into the filters wp_mail_from
and wp_mail_from_name
somewhere in your functions.php
. Here’s how to do this:
https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_from
The above will affect all email sent with wp_mail()
from your site.
I will make a note to make it easier to set an originator for the plugin via an admin option in the next release.
kind regards