Information emails
Intro
The information emails allow organizers to send emails to ticket owners of an event.
Requirements
- The organizer should have the
event.event.update
permission to create and send info emails
Sending emails
To send emails, follow these steps:
-
Submit a request to the POST /organizer/{organizer_id}/event/{event_id}/information_email endpoint with proper
subject
andbody
to create an information email. Thebody
can contain HTML content that will be presented in the email. Once an info email was created, the dispatched info is set todraft
(1). -
While the info email is
draft
(1), it is possible to delete it. Endpoint for deleting: DELETE /organizer/{organizer_id}/event/{event_id}/information_email/{id} -
Use POST /organizer/{organizer_id}/event/{event_id}/information_email/{id}/send to send the email to the ticket owners. After sending the dispatched info is set to
sent
(2) and the deletion of the info email is not possible.
For the order buyers, the email is sent to their order contact email address.
For users that have manually issued tickets, the email is sent to their registered email address.
Here is the swagger for the endpoints: Docs