PluginProbe
Timetics – Appointment Booking Calendar & Scheduling / 1.0.14
Timetics – Appointment Booking Calendar & Scheduling v1.0.14
1.0.61 1.0.60 1.0.59 1.0.58 1.0.57 1.0.56 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 All 62 releases
timetics / templates / emails / update-event.php

update-event.php in Timetics – Appointment Booking Calendar & Scheduling 1.0.14, at templates/emails/update-event.php

114 lines 7.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $staff_name = $this->staff->get_display_name();
3 $customer_name = $this->customer->get_display_name();
4 $customer_email = $this->customer->get_email();
5 $title = $this->get_title();
6 $description = $this->meeting->get_description();
7 $location = $this->booking->get_location();
8 $location_type = $this->booking->get_location_type();
9
10 $event = $this->booking->get_event();
11 $join_link = 'google-meet' === $location_type && ! empty( $event['hangoutLink'] ) ? $event['hangoutLink'] : '';
12 $timezone = $event ? $event['start']['timeZone'] : '';
13 $timestr = $event ? strtotime( $event['start']['dateTime'] ) : '';
14
15 $day = gmdate( 'l', strtotime( $this->booking->get_start_date() ) );
16 $time = gmdate( 'h:i a', strtotime( $this->booking->get_start_time() ) );
17 $date = gmdate( 'd F Y', strtotime( $this->booking->get_start_date() ) );
18
19 $email_body = timetics_get_option( 'booking_rescheduled_host_email_body' );
20 $email_title = timetics_get_option( 'booking_rescheduled_host_email_title' );
21 $email_title = ! empty( $email_title ) ? $email_title : $this->get_title();
22
23 $placeholders = [
24 '{%meeting_title%}' => $this->meeting->name,
25 '{%meeting_date%}' => $date,
26 '{%meeting_time%}' => $time,
27 '{%meeting_location%}' => $location,
28 '{%meeting_duration%}' => $this->meeting->duration,
29 '{%host_name%}' => $staff_name,
30 '{%host_email%}' => $this->staff->get_email(),
31 '{%customer_name%}' => $customer_name,
32 '{%customer_email%}' => $customer_email,
33 ];
34 ?>
35
36 <div class="email-wrapper" style="margin-bottom: 30px; background-color: #f4f5f7; font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','Noto Sans',Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji', sans-serif;">
37 <div style="max-width: 600px; margin: 0 auto;">
38 <div class="email-content" style="padding: 40px; background-color: #ffffff; border-radius: 0 0 12px 12px; border-top: 4px solid #3161F1; margin-bottom: 40px;">
39 <?php do_action('timetics_email_header') ;?>
40 <div class="email-title">
41 <h3 style="color: #3161F1; font-size: 24px; font-weight: 600; margin: 30px 0;">
42 <?php echo esc_html( timetics_replace_placeholder( $email_title, $placeholders ) ); ?>
43 </h3>
44 </div>
45 <?php if ( $email_body ): ?>
46
47 <?php echo timetics_replace_placeholder( $email_body, $placeholders ); ?>
48 <?php if ( 'virtual' === $location_type && $join_link ): ?>
49 <div class="single-data-entry" style="margin: 10px 0 20px;">
50 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;">
51 <?php esc_html_e( 'Location:', 'timetics' );?>
52 </p>
53 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
54 <?php echo esc_html__('Joining link:', 'timetics') ;?>
55 <a style="color: #3161F1" href="<?php echo esc_url( $join_link ); ?>"><?php echo esc_url( $join_link ); ?></a>
56 </p>
57 </div>
58 <?php endif;?>
59 <?php do_action( 'timetics_new_event_email', $this->booking ); ?>
60 <?php else: ?>
61
62 <p class="greeting" style="color: #556880; margin-bottom: 5px">
63 <?php printf( esc_html__( 'Hi %s,', 'timetics' ), esc_html( $staff_name ) );?>
64 </p>
65
66 <p style="color: #556880; margin-bottom: 5px"><?php esc_attr_e( 'Meeting has been rescheduled', 'timetics' );?></p>
67
68 <div class="data-wrapper" style="border: 1px solid #E2ECF4; border-radius: 12px; padding: 30px; margin: 24px 0;">
69 <div class="single-data-entry" style="margin: 0 0 20px;">
70 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Meeting Name:', 'timetics' ); ?></p>
71 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
72 <?php echo esc_html( timetics_replace_placeholder( $email_title, $placeholders ) ); ?>
73 </p>
74
75 </div>
76 <div class="single-data-entry" style="margin: 0 0 20px;">
77 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Invitee:', 'timetics' ); ?></p>
78 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
79 <?php echo esc_html( $customer_name );?> -
80 <a style="color: #3161F1" href="mailto:<?php echo esc_attr( $customer_email )?>"><?php echo esc_html( $customer_email ); ?></a>
81 </p>
82 </div>
83
84 <div class="single-data-entry" style="margin: 10px 0 20px;">
85 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Date and time:', 'timetics' ); ?></p>
86 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php printf( esc_html__( '%s, %s %s', 'timetics' ), esc_html( $time ), esc_html( $day ), esc_html( $date ), esc_html( $timezone ) );?></p>
87 </div>
88
89 <?php if ( 'virtual' === $location_type && $join_link ): ?>
90 <div class="single-data-entry" style="margin: 10px 0 20px;">
91 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;">
92 <?php esc_html_e( 'Location:', 'timetics' );?>
93 </p>
94 <img width="110" style="margin: 5px 0;" src="https://arraytics.dev/social-icons/google-meet.png" alt="Google Meet">
95 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;">
96 <?php echo esc_html__('Joining link:', 'timetics') ;?>
97 <a style="color: #3161F1" href="<?php echo esc_url( $join_link ); ?>"><?php echo esc_url( $join_link ); ?></a>
98 </p>
99 </div>
100 <?php endif;?>
101 <?php if($timezone) :?>
102 <div class="single-data-entry" style="margin: 10px 0 20px;">
103 <p style="font-weight: 600; font-size: 14px; line-height: 1; color: #0C274A; margin: 0 0 5px;"><?php echo esc_html__( 'Invitee Time Zone:', 'timetics' ); ?></p>
104 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php echo esc_html( $timezone ); ?></p>
105 </div>
106 <?php endif;?>
107 </div>
108 <?php endif;?>
109 <p style="font-weight: 400; font-size: 14px; color: #556880; margin: 0;"><?php echo esc_html__('Thank you!', 'timetics'); ?></p>
110 </div>
111 <?php do_action('timetics_email_footer', $customer_email) ;?>
112 </div>
113 </div>
114