I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).
If you are new here, please see some information on how to ask for support. Thank you!
-
AnonymousInactive
Hello Alex
How to change the email that sends notifications to user
it’s wordpress@sitename.com by default but i want to change to info or non-reply
can you help me how to change it?
Hi, the plugin sends emails with the wp_mail()
function. So you could to follow the instructions given here:
wp_mail()
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
Hello again,
You can now set the originator address and name more easily in the admin section, in version 3.3.1
of the plugin.
You can find the option in Admin → Wallets → Notifications → Notification settings for ALL events. This also affects e-mail confirmations.
regards
AnonymousInactive
- You must be logged in to reply to this topic.