21 lines
927 B
PHP
21 lines
927 B
PHP
<?php
|
|
/**
|
|
* Appointment Booked (to Customer)
|
|
* *
|
|
* This template can be overridden by copying it to wp-content/themes/your-theme/ssa/notifications/email/text/canceled-customer.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( __( 'Hi %s,', 'simply-schedule-appointments' ), '{{ Appointment.customer_information.Name }}' ); ?>
|
|
|
|
<?php echo sprintf( __( 'Your appointment "%s" (booked on %s) has been canceled', 'simply-schedule-appointments' ), '{{ Appointment.AppointmentType.title|raw }}', '{{ Global.home_url }}' ); ?>
|