Tagged Questions
0
votes
0answers
25 views
Wordpress email notification using address with plus sign
So I've managed to change mail_from used by WP to send e.g. new comment notifications by adding filters like that:
add_filter('wp_mail_from_name', 'get_name');
add_filter('wp_mail_from', ...
1
vote
2answers
383 views
If new comment posted in custom post - send notification to custom email from custom field
I have custom post type "Art masters".
Each post is master's profile.
In their profiles isset custom fiels name "master_email".
I need to send for master email notification every time if new ...
1
vote
1answer
173 views
3 different mail notifications
I'm building a small tracker and need to send mail notifications on specific actions.
Thought-out notifications:
Administrator gets a notification email when a new ticket is published
Author gets a ...
0
votes
1answer
242 views
Conditional wp_mail statement on post
I am currently posting from the front end using a similar model as http://voodoopress.com/2011/03/review-of-posting-from-front-end-form/. I want to send an email to certain addresses based on the ...