email_footer.php
1 year ago
email_header.php
1 year ago
email_styles.php
1 year 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
1 year ago
order_updated_email_to_students.php
1 year ago
order_updated_email_to_teachers.php
1 year ago
send-reset-password.php
2 years ago
send-reset-password.php
45 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Send reset password template |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Email |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 1.4.3 |
| 10 | */ |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | ?> |
| 14 | |
| 15 | |
| 16 | <p> |
| 17 | <?php |
| 18 | /* translators: %s: user login */ |
| 19 | printf( esc_html__( 'Hi %s,', 'tutor' ), esc_html( $user_login ) ); |
| 20 | ?> |
| 21 | </p> |
| 22 | |
| 23 | <p> |
| 24 | <?php |
| 25 | /* translators: %s: site name */ |
| 26 | printf( esc_html__( 'Someone has requested a new password for the following account on %s:', 'tutor' ), esc_html( wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ) ); |
| 27 | ?> |
| 28 | </p> |
| 29 | |
| 30 | <p> |
| 31 | <?php |
| 32 | /* translators: %s: user login */ |
| 33 | printf( esc_html__( 'Username: %s', 'tutor' ), esc_html( $user_login ) ); |
| 34 | ?> |
| 35 | </p> |
| 36 | <p> |
| 37 | <?php esc_html_e( 'If you didn\'t make this request, just ignore this email. If you\'d like to proceed:', 'tutor' ); ?> |
| 38 | </p> |
| 39 | <p> |
| 40 | <a class="link" href="<?php echo add_query_arg( array( 'reset_key' => $reset_key, 'user_id' => $user_id ), tutor_utils()->tutor_dashboard_url('retrieve-password') ); ?>"><?php // phpcs:ignore ?> |
| 41 | <?php esc_html_e( 'Click here to reset your password', 'tutor' ); ?> |
| 42 | </a> |
| 43 | </p> |
| 44 | <p><?php esc_html_e( 'Thanks for reading.', 'tutor' ); ?></p> |
| 45 |