Plugin Directory

Changeset 660872


Ignore:
Timestamp:
01/29/2013 08:33:01 PM (13 years ago)
Author:
bitacre
Message:

1.5.3 fixes wp_mail()

Location:
super-simple-contact-form/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • super-simple-contact-form/trunk/readme.txt

    r660390 r660872  
    55Tags: contact, form, email, admin, shortcode, simple, small, tiny, send, mail
    66Requires at least: 2.8
    7 Tested up to: 3.5
    8 Stable tag: 1.5.2
     7Tested up to: 3.5.1
     8Stable tag: 1.5.3
    99
    1010An absurdly simple contact form plugin. Just type [contact]. There are no options.
     
    7878
    7979== 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
    8083= 1.5.2 =
    8184* Now requires return email address and message. Will turn the fields red and print a message that "you forgot to include your email/message."
     
    116119
    117120== Upgrade Notice ==
     121= 1.5.3 =
     122Recommended upgrade, uses mail() instead of the broken wp_mail().
     123
    118124= 1.5.2 =
    119125Recommended 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  
    44Plugin URI: http://shinraholdings.com/plugins/super-simple-contact-form/
    55Description: An absurdly simple contact form plugin. Just type [contact]. There are no options.
    6 Version: 1.5.2
     6Version: 1.5.3
    77Author: bitacre
    88Author URI: http://shinraholdings.com
     
    5555            // build headers and send mail
    5656            $headers = 'From: ' . $from_name . ' <' . $from_email . '>' . "\r\n";
    57             wp_mail( $to_email, $subject, $message, $headers );
     57            mail( $to_email, $subject, $message, $headers );
    5858           
    5959            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.