Hello,
When I publish a new event, "email_new_event.php" template is sending email to subscriber.
Into this:
$sections = [
[
'title' => evo_lang('Event Time'), // Translated title
'content' => $event_data['time_string'], // Content from event data
'show' => true, // Always show this section
],
'time_string' is the starting date/time of the event. This is OK.
What about a repeat event ? is it possible to replace "'time_string' by something else containing a list of all date/time of the event ? The issue is that a wrong date is returned in case of repaeat event (value is "1 janvier 1970 00:00 - 00:00 (GMT+01:00)")
The goal is to list all the reccurences of the event on the email notification instead of this wrong date.