Hi Tony,
Thanks for reaching out to us. I’ll be glad to help you out with this!
Adding this snippet to your functions.php file (located at ‘wp-content/themes/your_theme/’) should do the trick:
add_action( 'tribe_community_event_created', 'notify_organizer' );
function notify_organizer ( $event_id ) {
$email = tribe_get_organizer_email( $event_id );
if( !empty($email) ) {
$subject = 'Hey Organizer';
$message = 'Just wanted to let you now about a new event!';
wp_mail( $email, $subject, $message );
}
}
Please try it out and let me know,
Best,
Nico