| 1 |
<?php |
| 2 |
/** |
| 3 |
* This template is used to send email when a user subscribes to a notification. |
| 4 |
* |
| 5 |
* @package WP_Defender |
| 6 |
*/ |
| 7 |
|
| 8 |
?> |
| 9 |
<h1 style="font-family:inherit;font-size: 25px;line-height:30px;color:inherit;margin-top:10px;margin-bottom: 30px"> |
| 10 |
<?php echo esc_html( $subject ); ?> |
| 11 |
</h1> |
| 12 |
<p style="color: #1A1A1A; font-family: Roboto, Arial, sans-serif; font-size: 16px; font-weight: normal; line-height: 24px; margin: 0; padding: 0 0 28px; text-align: left; word-wrap: normal;"> |
| 13 |
<?php |
| 14 |
/* translators: %s: Name. */ |
| 15 |
printf( esc_html__( 'Hi %s', 'defender-security' ), esc_html( $name ) ) |
| 16 |
?> |
| 17 |
, |
| 18 |
</p> |
| 19 |
<p style="font-family: inherit; font-size: 16px; margin: 0 0 30px"> |
| 20 |
<?php |
| 21 |
printf( |
| 22 |
/* translators: 1. Site url. 2. Email. 3. Notification name. */ |
| 23 |
esc_html__( |
| 24 |
'An administrator from %1$s has subscribed %2$s to %3$s. To confirm your subscription, click Confirm Subscription below.', |
| 25 |
'defender-security' |
| 26 |
), |
| 27 |
'<strong>' . esc_url( $site_url ) . '</strong>', |
| 28 |
'<strong>' . esc_html( $email ) . '</strong>', |
| 29 |
'<strong>' . esc_html( $notification_name ) . '</strong>' |
| 30 |
) |
| 31 |
?> |
| 32 |
</p> |
| 33 |
<p style="margin: 0;padding: 0;text-align: center"> |
| 34 |
<a class="button view-full" |
| 35 |
style="font-family: Roboto, Arial, sans-serif;font-size: 16px;font-weight: normal;line-height: 20px;text-align: center; margin-bottom:0;" |
| 36 |
href="<?php echo esc_url( $url ); ?>"><?php esc_attr_e( 'Confirm Subscription', 'defender-security' ); ?></a> |
| 37 |
</p> |
| 38 |
|