| @@ -57,19 +57,9 @@ | ||
| 57 | 57 | 'customer_as_attendees' => false, |
| 58 | 58 | 'events_limit' => null, |
| 59 | 59 | 'template' => array( |
| 60 | 60 | 'title' => __( 'Appointment #[appointment_id]', 'bookit' ), |
| 61 | - 'body' => __( | |
| 62 | - 'Service: [service_title]' . PHP_EOL . // phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText | |
| 63 | - 'Customer: [customer_name]' . PHP_EOL . | |
| 64 | - 'Customer phone: [customer_phone]' . PHP_EOL . | |
| 65 | - 'Customer email: [customer_email]' . PHP_EOL . | |
| 66 | - 'Start time: [start_time]' . PHP_EOL . | |
| 67 | - 'Payment Method: [payment_method]' . PHP_EOL . | |
| 68 | - 'Payment Status: [payment_status]' . PHP_EOL . | |
| 69 | - 'Total: [total]' . PHP_EOL . 'Status: [status]', | |
| 70 | - 'bookit' | |
| 71 | - ), | |
| 61 | + 'body' => __( "Service: [service_title]\nCustomer: [customer_name]\nCustomer phone: [customer_phone]\nCustomer email: [customer_email]\nStart time: [start_time]\nPayment Method: [payment_method]\nPayment Status: [payment_status]\nTotal: [total]\nStatus: [status]", 'bookit' ), | |
| 72 | 62 | ), |
| 73 | 63 | ); |
| 74 | 64 | } |
| 75 | 65 | |