Version Description
- Encode notification emails in UTF-8
Download this release
Release Info
Developer | tlovett1 |
Plugin | Custom Contact Forms |
Version | 6.3.5 |
Comparing to | |
See all releases |
Code changes from version 6.3.4 to 6.3.5
- README.md +8 -0
- classes/class-ccf-form-handler.php +1 -1
- custom-contact-forms.php +1 -1
- readme.txt +4 -1
README.md
CHANGED
@@ -35,6 +35,14 @@ Select or create a new form and click `Insert into post`:
|
|
35 |
|
36 |
![Insert a form into a post](https://tlovett1.files.wordpress.com/2015/01/insert-form.png)
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
### Form Settings
|
39 |
|
40 |
Each form has a number of settings that you should understand.
|
35 |
|
36 |
![Insert a form into a post](https://tlovett1.files.wordpress.com/2015/01/insert-form.png)
|
37 |
|
38 |
+
You can also add a form to your theme or plugin using PHP:
|
39 |
+
|
40 |
+
```php
|
41 |
+
if ( function_exists( 'ccf_output_form' ) ) {
|
42 |
+
ccf_output_form( FORM_ID );
|
43 |
+
}
|
44 |
+
```
|
45 |
+
|
46 |
### Form Settings
|
47 |
|
48 |
Each form has a number of settings that you should understand.
|
classes/class-ccf-form-handler.php
CHANGED
@@ -668,7 +668,7 @@ class CCF_Form_Handler {
|
|
668 |
|
669 |
$message .= ob_get_clean();
|
670 |
|
671 |
-
$headers = array( 'MIME-Version: 1.0', 'Content-type: text/html; charset=
|
672 |
|
673 |
$email_notification_from_type = get_post_meta( $form_id, 'ccf_form_email_notification_from_type', true );
|
674 |
|
668 |
|
669 |
$message .= ob_get_clean();
|
670 |
|
671 |
+
$headers = array( 'MIME-Version: 1.0', 'Content-type: text/html; charset=utf-8' );
|
672 |
|
673 |
$email_notification_from_type = get_post_meta( $form_id, 'ccf_form_email_notification_from_type', true );
|
674 |
|
custom-contact-forms.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://www.taylorlovett.com
|
5 |
* Description: Build beautiful custom forms the WordPress way. View live previews of your forms while you build them.
|
6 |
* Author: Taylor Lovett
|
7 |
-
* Version: 6.3.
|
8 |
* Author URI: http://www.taylorlovett.com
|
9 |
*/
|
10 |
|
4 |
* Plugin URI: http://www.taylorlovett.com
|
5 |
* Description: Build beautiful custom forms the WordPress way. View live previews of your forms while you build them.
|
6 |
* Author: Taylor Lovett
|
7 |
+
* Version: 6.3.5
|
8 |
* Author URI: http://www.taylorlovett.com
|
9 |
*/
|
10 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers, forms
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.1
|
7 |
-
Stable tag: 6.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -35,6 +35,9 @@ For questions, feature requests, and support concerning the Custom Contact Forms
|
|
35 |
|
36 |
== Changelog ==
|
37 |
|
|
|
|
|
|
|
38 |
= 6.3.4 =
|
39 |
* Re-add PHP function to server form via PHP
|
40 |
* Don't escape form title since it is already escaped
|
4 |
Tags: contact form, web form, custom contact form, custom forms, captcha form, contact fields, form mailers, forms
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 6.3.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
35 |
|
36 |
== Changelog ==
|
37 |
|
38 |
+
= 6.3.5 =
|
39 |
+
* Encode notification emails in UTF-8
|
40 |
+
|
41 |
= 6.3.4 =
|
42 |
* Re-add PHP function to server form via PHP
|
43 |
* Don't escape form title since it is already escaped
|