• Resolved swbdatw

    (@swbdatw)


    Good evening,
    we need the ability to send an RSVP confirmation email to the website administrator. Apparently he only gets a confirmation when the payment process has been completed.
    But we want to offer our tickets for free…. and it is not possible to publish the tickets without a price.
    Please what can we do?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Darian

    (@d0153)

    Hi @swbdatw

    Thanks for reaching out. Let me help you with this one.

    I think you could try using one of this extensions:

    As always, please test this on your staging site before applying it to your live site.

    Let me know if you have further questions or concerns.

    Thread Starter swbdatw

    (@swbdatw)

    Hello,
    unfortunately I have not made any progress.
    The Ticket Email Settings extension has not been active for a long time. This has done nothing.
    And after I installed the Organizer Notification Email extension, I still don’t receive any emails as an admin, but the RSVP booker also suddenly no longer receives a confirmation email.
    That was no help unfortunately… too bad

    Plugin Support Darian

    (@d0153)

    Hi @swbdatw

    Thanks for your response.

    Please deactivate those plugins I recommended, and use the snippet below:

    add_filter( 'tec_tickets_emails_dispatcher_rsvp_headers', 'my_add_bcc_email_headers' );
     
    function my_add_bcc_email_headers( $headers ) {
         
        $headers['Bcc'] = 'YOUR NAME <[email protected]>';
         
        return $headers;
    }

    You’ll need to change name and email for it to work. If you’re not familiar how to implement the code above, you can use the Code Snippets plugin, which removes the need to add custom snippets to your theme’s functions.php file.

    Moreover, please see our knowledgebase article that will help you customize the email content and resolve SMTP issues:

    I hope this helps, and please let me know if you have further questions or concerns.

    Plugin Support Darian

    (@d0153)

    Hi there,

    It seems like this thread has been quiet for a bit, so we’ll go ahead and mark it as resolved. However, if any further questions or concerns come up, please don’t hesitate to start a new thread.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘RSVP confirmation email to admin or free tickets’ is closed to new replies.