coming soon Something exciting is coming soon – stay tuned to find out! 🚀✨
You can reach out to support to receive a discount on your purchase.
How can we help?

Send an email notification to the organizer when a event is approved

It will be very helpful in communication strategies if you will send an email notification to organizers once their event is approved.

Following the below steps will help you to send an email notification to the organizer when an event is approved:

Send an email notification steps:

  1. Open your child theme.
  2. Add the below code to functions.php file:
    function send_email_notification_to_organizer($post_id) {
       $post = get_post($post_id);
       $author = get_userdata($post->post_author);
    
       $message = "
          Hi ".$author->display_name.",
          Your listing, ".$post->post_title." has just been approved at ".get_permalink( $post_id ).". 
       ";
       wp_mail($author->user_email, "Your event listing got published!", $message);
        }
       add_action('publish_event_listing', 'send_email_notification_to_organizer');
    
  3. You can customize the message easily.

Use a plugin such as Post Status Notifier Lite.

Quick Links
Close
Close