You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When booking an appointment, i often add data to the Location and the Notes fields, e.g. to include the Google Meet link.
But, in the email sent to the Provider and the Customer this data is never included!
The text was updated successfully, but these errors were encountered:
alextselegidis
changed the title
Email does not include all the data
Add the location and notes fields to the appointment email notifications (if present).
Feb 21, 2023
alextselegidis
changed the title
Add the location and notes fields to the appointment email notifications (if present).
Add the location and notes fields to the appointment email notifications (if a value was provided).
Feb 21, 2023
I would also add address, vity and zipcode to the location when booked:
booking.php:
if (empty($appointment['location']) && !empty($service['location'])) {
$appointment['location'] = $service['location'];
}
// if not location: use the full address given when bookif (empty($appointment['location'])) {
$appointment['location'] = $customer['address'] . '' . $customer['zip_code'] . '' . $customer['city'];
}
When booking an appointment, i often add data to the
Location
and theNotes
fields, e.g. to include the Google Meet link.But, in the email sent to the
Provider
and theCustomer
this data is never included!The text was updated successfully, but these errors were encountered: