PluginProbe
Defender Security – Malware Scanner, Login Security & Firewall / 6.2.3
Defender Security – Malware Scanner, Login Security & Firewall v6.2.3
6.2.3 6.2.4 6.2.0 6.2.1 6.2.2 6.1.0 5.3.1 5.4.0 5.4.1 5.5.0 5.5.1 5.6.0 5.6.1 5.6.2 5.7.0 5.7.1 5.7.2 5.8.0 5.8.1 5.9.0 6.0.0 6.0.1 3.0.1 3.1.0 3.1.1 All 140 releases
defender-security / src / view / email / confirm.php

confirm.php in Defender Security – Malware Scanner, Login Security & Firewall 6.2.3, at src/view/email/confirm.php

38 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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