• I’m aware that a ticket was opened only a couple of weeks ago about this but having followed your advice I still can’t figure out why admin/editor is not receiving emails when a new front end submission is completed and submitted.

    At https://www.e-dynamics.be/wordpress/?cat=41 you say to add the following code to functions.php

    add_action(’eme_insert_event_action’,’eme_mail_event’);
    function eme_mail_event ($event) {
    $contact = eme_get_contact ($event);
    $contact_email = $contact->user_email;
    $contact_name = $contact->display_name;
    $subject_format=”This is the new event called ‘ #_EVENTNAME ‘”;
    $body_format=”This is the new event called ‘ #_EVENTNAME ‘”;

    $subject=eme_replace_placeholders($subject_format, $event, “text”);
    $body=eme_replace_placeholders($body_format, $event, “text”);
    $blogusers = get_users();
    foreach ( $blogusers as $user ) {
    eme_send_mail($subject,$body, $user->email, $user->display_name, $contact_email, $contact_name);
    }
    }

    I have done this and still nothing. Is there another setting I should change too?

    Thanks

    https://www.ads-software.com/plugins/events-made-easy-frontend-submit/

  • The topic ‘Email notification when front end submission form completed’ is closed to new replies.