Version Description
- Empty subject fix
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 6.3.1 |
Comparing to | |
See all releases |
Code changes from version 6.3.0 to 6.3.1
- plugin.php +5 -2
- readme.txt +5 -1
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.3.
|
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.
|
@@ -29,7 +29,7 @@
|
|
29 |
*/
|
30 |
|
31 |
// Used as dummy parameter on css and js links
|
32 |
-
define('NEWSLETTER_VERSION', '6.3.
|
33 |
|
34 |
global $newsletter, $wpdb;
|
35 |
|
@@ -919,6 +919,9 @@ class Newsletter extends NewsletterModule {
|
|
919 |
|
920 |
$mailer_message = new TNP_Mailer_Message();
|
921 |
$mailer_message->to = $to;
|
|
|
|
|
|
|
922 |
|
923 |
if (!empty($headers)) {
|
924 |
$mailer_message->headers = $headers;
|
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.3.1
|
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.
|
29 |
*/
|
30 |
|
31 |
// Used as dummy parameter on css and js links
|
32 |
+
define('NEWSLETTER_VERSION', '6.3.1');
|
33 |
|
34 |
global $newsletter, $wpdb;
|
35 |
|
919 |
|
920 |
$mailer_message = new TNP_Mailer_Message();
|
921 |
$mailer_message->to = $to;
|
922 |
+
$mailer_message->subject = $subject;
|
923 |
+
$mailer_message->from = $this->options['sender_email'];
|
924 |
+
$mailer_message->from_name = $this->options['sender_name'];
|
925 |
|
926 |
if (!empty($headers)) {
|
927 |
$mailer_message->headers = $headers;
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
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.2.3
|
5 |
-
Stable tag: 6.3.
|
6 |
Requires PHP: 5.6
|
7 |
Contributors: satollo,webagile,michael-travan
|
8 |
|
@@ -109,6 +109,10 @@ Thank you, The Newsletter Team
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
112 |
= 6.3.0 =
|
113 |
|
114 |
* New mailer infrastructure: better compatibility and performance
|
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.2.3
|
5 |
+
Stable tag: 6.3.1
|
6 |
Requires PHP: 5.6
|
7 |
Contributors: satollo,webagile,michael-travan
|
8 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 6.3.1 =
|
113 |
+
|
114 |
+
* Empty subject fix
|
115 |
+
|
116 |
= 6.3.0 =
|
117 |
|
118 |
* New mailer infrastructure: better compatibility and performance
|