• Resolved PEMCOLTD

    (@pemcoltd)


    Hello!

    When a bookee receives an email notification after registering for an event, the “from” field is the admin’s email address. I’d like to change that email to something else. Here is the code I placed inside functions.php:

    function my_event_admin_email( $email ){
    //Change $email;
    $email = array(“[email protected]”);
    return $email;
    }
    add_filter( ‘eventorganiser_admin_email’, ‘my_event_admin_email’ );

    After applying this, the bookee did not receive an email notification at all. Is there another solution I can try?

    Thanks in advance!

    https://www.ads-software.com/plugins/event-organiser/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Bookee email notification "from" field’ is closed to new replies.