Changeset 660872
- Timestamp:
- 01/29/2013 08:33:01 PM (13 years ago)
- Location:
- super-simple-contact-form/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
super-simple-contact-form.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
super-simple-contact-form/trunk/readme.txt
r660390 r660872 5 5 Tags: contact, form, email, admin, shortcode, simple, small, tiny, send, mail 6 6 Requires at least: 2.8 7 Tested up to: 3.5 8 Stable tag: 1.5. 27 Tested up to: 3.5.1 8 Stable tag: 1.5.3 9 9 10 10 An absurdly simple contact form plugin. Just type [contact]. There are no options. … … 78 78 79 79 == Changelog == 80 = 1.5.3 = 81 * Updated for 3.5.1 to use mail() instead of wp_mail(), which appears to no longer be working. 82 80 83 = 1.5.2 = 81 84 * Now requires return email address and message. Will turn the fields red and print a message that "you forgot to include your email/message." … … 116 119 117 120 == Upgrade Notice == 121 = 1.5.3 = 122 Recommended upgrade, uses mail() instead of the broken wp_mail(). 123 118 124 = 1.5.2 = 119 125 Recommended upgrade, now requires a return email address and a message to be sent. -
super-simple-contact-form/trunk/super-simple-contact-form.php
r660381 r660872 4 4 Plugin URI: http://shinraholdings.com/plugins/super-simple-contact-form/ 5 5 Description: An absurdly simple contact form plugin. Just type [contact]. There are no options. 6 Version: 1.5. 26 Version: 1.5.3 7 7 Author: bitacre 8 8 Author URI: http://shinraholdings.com … … 55 55 // build headers and send mail 56 56 $headers = 'From: ' . $from_name . ' <' . $from_email . '>' . "\r\n"; 57 wp_mail( $to_email, $subject, $message, $headers );57 mail( $to_email, $subject, $message, $headers ); 58 58 59 59 return '<p class="sscf-report">' . __( 'Your message was sent successfully!', 'super-simple-contact-form' ) . '</p>';
Note: See TracChangeset
for help on using the changeset viewer.