PluginProbe
MailPoet – Newsletters, Email Marketing, and Automation / 3.16.2
MailPoet – Newsletters, Email Marketing, and Automation v3.16.2
5.38.0 5.37.0 5.36.1 5.36.0 5.35.1 5.35.0 5.34.3 5.34.2 5.34.1 5.34.0 5.33.1 5.33.0 5.32.0 5.31.0 5.30.0 5.29.0 5.28.1 5.28.0 5.27.0 5.26.0 5.26.1 5.25.0 5.24.0 4.43.0 4.43.1 All 542 releases
mailpoet / lib / Config / PrivacyPolicy.php
PrivacyPolicy.php
41 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace MailPoet\Config;
4
5 use MailPoet\Util\Helpers;
6
7 class PrivacyPolicy {
8
9 function init() {
10 if(function_exists('wp_add_privacy_policy_content')) {
11 wp_add_privacy_policy_content(__('MailPoet', 'mailpoet'), $this->getPrivacyPolicyContent());
12 }
13 }
14
15 function getPrivacyPolicyContent() {
16 return
17 '<h2>' .
18 __('MailPoet newsletter & emails', 'mailpoet') .
19 '</h2>' .
20 '<p>' .
21 __('If you have subscribed to our newsletter or if you are a member of our website (you can log in) or if you have purchased on our website, there is a good chance you will receive emails from us.', 'mailpoet') .
22 '</p>' .
23 '<p>' .
24 __('We will only send you emails which you have signed up to receive, or which pertain to the services we provided to you.', 'mailpoet') .
25 '</p>' .
26 '<p>' .
27 __('To send you emails, we use the name and email address you provide us. Our site also logs the IP address you used when you signed up for the service to prevent abuse of the system.', 'mailpoet') .
28 '</p>' .
29 '<p>' .
30 Helpers::replaceLinkTags(
31 __('This website can send emails through the [link]MailPoet sending service[/link]. This service allows us to track opens and clicks on our emails. We use this information to improve the content of our newsletters.', 'mailpoet'),
32 'https://www.mailpoet.com/privacy-notice/',
33 array('target' => '_blank')
34 ) .
35 '</p>' .
36 '<p>' .
37 __('No identifiable information is otherwise tracked outside this website except for the email address.', 'mailpoet') .
38 '</p>';
39 }
40
41 }