Skip to content

Commit c521920

Browse files
committed
insanity raises
1 parent 00e9c91 commit c521920

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/Notifications/Email.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public function sendAppointmentDetails(
137137
'$email_message' => $message->get(),
138138
'$appointment_service' => $service['name'],
139139
'$appointment_provider' => $provider['first_name'] . ' ' . $provider['last_name'],
140-
'$appointment_prov_notes' => $provider['notes'],
140+
'$appointment_prov_notes' => str_replace("\n", "<br>", $provider['notes']),
141141
'$appointment_start_date' => date($date_format . ' ' . $timeFormat, strtotime($appointment['start_datetime'])),
142142
'$appointment_end_date' => date($date_format . ' ' . $timeFormat, strtotime($appointment['end_datetime'])),
143143
'$appointment_link' => $appointmentLink->get(),

0 commit comments

Comments
 (0)