Version Description
- Fixed email delivery bug
Download this release
Release Info
Developer | codepeople |
Plugin | Contact Form Email |
Version | 1.2.98 |
Comparing to | |
See all releases |
Code changes from version 1.2.97 to 1.2.98
- README.txt +5 -2
- cp-main-class.inc.php +1 -1
- form-to-email.php +1 -1
README.txt
CHANGED
@@ -456,6 +456,9 @@ When you click a field already added into the contact form builder area, you can
|
|
456 |
|
457 |
== Changelog ==
|
458 |
|
|
|
|
|
|
|
459 |
= 1.2.97 =
|
460 |
* Compatiblity updates
|
461 |
|
@@ -1051,5 +1054,5 @@ When you click a field already added into the contact form builder area, you can
|
|
1051 |
|
1052 |
== Upgrade Notice ==
|
1053 |
|
1054 |
-
= 1.2.
|
1055 |
-
*
|
456 |
|
457 |
== Changelog ==
|
458 |
|
459 |
+
= 1.2.98 =
|
460 |
+
* Fixed email delivery bug
|
461 |
+
|
462 |
= 1.2.97 =
|
463 |
* Compatiblity updates
|
464 |
|
1054 |
|
1055 |
== Upgrade Notice ==
|
1056 |
|
1057 |
+
= 1.2.98 =
|
1058 |
+
* Fixed email delivery bug
|
cp-main-class.inc.php
CHANGED
@@ -925,7 +925,7 @@ class CP_ContactFormToEmail extends CP_CFTEMAIL_BaseClass {
|
|
925 |
$from_1 = '"'.$from_1.'" <'.$from_1.'>';
|
926 |
wp_mail(trim($item), $subject, $message,
|
927 |
"From: ".$from_1."\r\n".
|
928 |
-
($replyto!=''?"Reply-To:
|
929 |
$content_type.
|
930 |
"X-Mailer: PHP/" . phpversion(), $attachments);
|
931 |
}
|
925 |
$from_1 = '"'.$from_1.'" <'.$from_1.'>';
|
926 |
wp_mail(trim($item), $subject, $message,
|
927 |
"From: ".$from_1."\r\n".
|
928 |
+
($replyto!=''?"Reply-To: ".$replyto."\r\n":'').
|
929 |
$content_type.
|
930 |
"X-Mailer: PHP/" . phpversion(), $attachments);
|
931 |
}
|
form-to-email.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
-
Version: 1.2.
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|
3 |
Plugin Name: Contact Form Email
|
4 |
Plugin URI: https://form2email.dwbooster.com/download
|
5 |
Description: Contact form that sends the data to email and also to a database list and CSV file.
|
6 |
+
Version: 1.2.98
|
7 |
Author: CodePeople
|
8 |
Author URI: https://form2email.dwbooster.com
|
9 |
Text Domain: contact-form-to-email
|