Skip Navigation

[Resolved] Email notifications for Editors for the review of pending posts

This support ticket is created 4 years, 2 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 3 replies, has 2 voices.

Last updated by Luo Yang 4 years, 2 months ago.

Assisted by: Luo Yang.

Author
Posts
#1846709

I need to achieve two-step publication process: An author will send the post for the review to an editor, who only has the right to publish it.
Until this point the Toolset Access plugin works fine. My question is: is there a possibility that Editors will get an email notification (or at least notification inside the WP admin), that there is a post pending for their review?
Thank you!
jiri

#1846823

Hello,

You can setup a post form for creating "post":
1) Setup the post status as "Pending review"
https://toolset.com/course-lesson/front-end-forms-for-adding-content/

2) Send an email notification to editor user:
https://toolset.com/course-lesson/send-notifications-when-someone-submits-the-form/

#1847527

Well, thank you, but I need it working on the backend, not frontend. Is this possible?
Thank you!
jiri

#1847983

Dear jiri,

There isn't such kind of built-in feature within Toolset plugins on the backend, you might consider custom codes, for example:
1) After author create a new "Pending review" post, use WP action hook "save_post" to trigger a PHP function:
https://developer.wordpress.org/reference/hooks/save_post/

2) In this PHP function, send the email with WP function wp_mail():
https://developer.wordpress.org/reference/functions/wp_mail/