Custom Emails for Custom Users
-
Is there a way to manage email notifications on custom post types for user roles? I have three user roles: general, managers and admins (I’m using user role editor plugin).
I am able to auto email all users any time a general post is created as well as my custom post types ‘jobs’.
What I’d like to do is remove general users from all ‘jobs’ activity:
1. Remove general users from receiving an email any time my custom post type ‘jobs’ is created.
2. Email managers and admins every time a comment is made in a job post type.
I am using the following code to add the custom post type, but not seeing it appear in the subscription areas as a checkbox.
//email jobs to specific users function my_post_types($types) { $types[] = 'jobs'; return $types; } add_filter('s2_post_types', 'my_post_types');
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Custom Emails for Custom Users’ is closed to new replies.