email_footer.php
1 year ago
email_header.php
1 year ago
email_styles.php
5 days ago
order_new_email_to_admin.php
1 year ago
order_new_email_to_students.php
1 year ago
order_new_email_to_teachers.php
1 year ago
order_updated_email_to_admin.php
11 months ago
order_updated_email_to_students.php
11 months ago
order_updated_email_to_teachers.php
11 months ago
order_updated_email_to_admin.php
41 lines
| 1 | <?php |
| 2 | /** |
| 3 | * E-mail template for refunded order |
| 4 | * |
| 5 | * @package Tutor |
| 6 | * @subpackage Templates\Email |
| 7 | * |
| 8 | * @since 2.5.0 |
| 9 | */ |
| 10 | |
| 11 | ?> |
| 12 | <!DOCTYPE html> |
| 13 | <html> |
| 14 | |
| 15 | <head> |
| 16 | <meta http-equiv="Content-Type" content="text/html charset=UTF-8" /> |
| 17 | <?php require TUTOR()->path . 'templates/email/email_styles.php'; ?> |
| 18 | </head> |
| 19 | |
| 20 | <body> |
| 21 | <div class="tutor-email-body"> |
| 22 | <div class="tutor-email-wrapper"> |
| 23 | <?php require TUTOR_PRO()->path . 'templates/email/email_header.php'; ?> |
| 24 | <div class="tutor-email-content"> |
| 25 | <div class="tutor-mr-160"> |
| 26 | <h6 data-source="email-heading" class="tutor-email-heading">{email_heading}</h6> |
| 27 | </div> |
| 28 | <br> |
| 29 | <div class="email-user-content" data-source="email-additional-message">{email_message}</div> |
| 30 | <br> |
| 31 | |
| 32 | <div class="tutor-email-buttons"> |
| 33 | <a href="{admin_order_url}" class="tutor-email-button"><?php esc_html_e( 'View Details', 'tutor' ); ?></a> |
| 34 | </div> |
| 35 | </div> |
| 36 | <?php require TUTOR()->path . 'templates/email/email_footer.php'; ?> |
| 37 | </div> |
| 38 | </div> |
| 39 | </body> |
| 40 | </html> |
| 41 |