2026-03-26 12:07:55 +00:00

35 lines
1.5 KiB
PHP

<?php
/**
* Appointment Booked (to Staff)
* *
* This template can be overridden by copying it to wp-content/themes/your-theme/ssa/notifications/email/text/booked-staff.php
* Note: this is just the default template that is used as a starting pont.
* Once the user makes edits in the SSA Settings interface,
* the template stored in the database will be used instead
*
* @see https://simplyscheduleappointments.com
* @author Simply Schedule Appointments
* @package SSA/Templates
* @version 2.5.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
} ?>
<?php echo sprintf( __( '%s just booked an appointment on %s', 'simply-schedule-appointments' ), '{{ Appointment.customer_information.Name }}', '{{ Global.home_url }}' ); ?>
<?php echo __( 'Appointment Details:', 'simply-schedule-appointments' );?>
<?php echo sprintf( __( 'Starting at %s', 'simply-schedule-appointments' ), '{{ Appointment.business_start_date }}' );?>
{% if instructions %}
<?php echo sprintf( __( 'Instructions: %s', 'simply-schedule-appointments' ), '{{ instructions|raw }}' ); ?>
{% endif %}
{% if Appointment.web_meeting_url %}
<?php echo sprintf( __( 'At your appointment time, join the meeting using this link: %s' ), '{{ Appointment.web_meeting_url }}' ); ?>
{% endif %}
<?php echo sprintf( __( 'Type: %s', 'simply-schedule-appointments' ), '{{ Appointment.AppointmentType.title|raw }}' ); ?>
<?php echo __( 'Customer details:' ) ?>
{{ Appointment.customer_information_summary }}