Newsletter - Version 6.8.8

Version Description

  • Fixed cancellation notification for admins
Download this release

Release Info

Developer satollo
Plugin Icon 128x128 Newsletter
Version 6.8.8
Comparing to
See all releases

Code changes from version 6.8.7 to 6.8.8

Files changed (3) hide show
  1. plugin.php +1 -1
  2. readme.txt +6 -2
  3. unsubscription/unsubscription.php +2 -2
plugin.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Newsletter
5
  Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
6
  Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
7
- Version: 6.8.7
8
  Author: Stefano Lissa & The Newsletter Team
9
  Author URI: https://www.thenewsletterplugin.com
10
  Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
4
  Plugin Name: Newsletter
5
  Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
6
  Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
7
+ Version: 6.8.8
8
  Author: Stefano Lissa & The Newsletter Team
9
  Author URI: https://www.thenewsletterplugin.com
10
  Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Newsletter ===
2
  Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
3
  Requires at least: 3.4.0
4
- Tested up to: 5.5
5
- Stable tag: 6.8.7
6
  Requires PHP: 5.6
7
  Contributors: satollo,webagile,michael-travan
8
 
@@ -113,6 +113,10 @@ Thank you, The Newsletter Team
113
 
114
  == Changelog ==
115
 
 
 
 
 
116
  = 6.8.7 =
117
 
118
  * Fix of confirmation_url attribute on minimal subscription form
1
  === Newsletter ===
2
  Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
3
  Requires at least: 3.4.0
4
+ Tested up to: 5.5.1
5
+ Stable tag: 6.8.8
6
  Requires PHP: 5.6
7
  Contributors: satollo,webagile,michael-travan
8
 
113
 
114
  == Changelog ==
115
 
116
+ = 6.8.8 =
117
+
118
+ * Fixed cancellation notification for admins
119
+
120
  = 6.8.7 =
121
 
122
  * Fix of confirmation_url attribute on minimal subscription form
unsubscription/unsubscription.php CHANGED
@@ -120,9 +120,9 @@ class NewsletterUnsubscription extends NewsletterModule {
120
 
121
  $message = $this->generate_admin_notification_message($user);
122
  $email = trim(get_option('admin_email'));
123
- $subject = $this->generate_admin_notification_subject('Newsletter unsubscription');
124
 
125
- Newsletter::instance()->mail($email, $subject, array('text' => $message));
126
  }
127
 
128
  /**
120
 
121
  $message = $this->generate_admin_notification_message($user);
122
  $email = trim(get_option('admin_email'));
123
+ $subject = $this->generate_admin_notification_subject('Newsletter subscription cacellation');
124
 
125
+ Newsletter::instance()->mail($email, $subject, array('html' => $message));
126
  }
127
 
128
  /**