We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00e9c91 commit c521920Copy full SHA for c521920
src/engine/Notifications/Email.php
@@ -137,7 +137,7 @@ public function sendAppointmentDetails(
137
'$email_message' => $message->get(),
138
'$appointment_service' => $service['name'],
139
'$appointment_provider' => $provider['first_name'] . ' ' . $provider['last_name'],
140
- '$appointment_prov_notes' => $provider['notes'],
+ '$appointment_prov_notes' => str_replace("\n", "<br>", $provider['notes']),
141
'$appointment_start_date' => date($date_format . ' ' . $timeFormat, strtotime($appointment['start_datetime'])),
142
'$appointment_end_date' => date($date_format . ' ' . $timeFormat, strtotime($appointment['end_datetime'])),
143
'$appointment_link' => $appointmentLink->get(),
0 commit comments