Hi Tony,
Thanks for reaching out, and glad to help you in this once again!
You can get the event link with the tribe_event_link function. So you could be doing something like the following:
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: ' . tribe_event_link ( $event_id );
wp_mail( $email, $subject, $message );
}
}
Please give this a try and let me know,
Best,
Nico