Plugin Directory

Changeset 1413254


Ignore:
Timestamp:
05/09/2016 06:49:59 PM (10 years ago)
Author:
hanicker
Message:

new version 1.0.2

Location:
emailchef/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • emailchef/trunk/README.txt

    r1412735 r1413254  
    44Tags: emailchef, newsletter, email, marketing, automation, form, forms
    55Requires at least: 4.0
    6 Tested up to: 4.5.1
    7 Stable tag: 1.0.1
     6Tested up to: 4.5.2
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1616
    1717With eMailChef you can send marketing emails to your customers through the interface provided at [emailchef.com](http://emailchef.com).
    18 eMailChef is forever free for less than 2000 customers and 12000 emails/month, with plans starting at 10$ / month for more.
     18eMailChef is forever free for less than 500 customers and unlimited emails/month, with plans starting at 10$ / month for more.
    1919This is the perfect marketing tool to add an intuitive and solid eMail campaign solution to your website.
    2020
     
    3333= Is it free? =
    3434
    35 eMailChef has a free plan up to 500 contacts (and up to 12k emails per month). Higher plans can be checked at [eMailChef pricing page](http://emailchef.com/pricing/).
     35eMailChef has a free plan up to 500 contacts. Higher plans can be checked at [eMailChef pricing page](http://emailchef.com/pricing/).
    3636
    3737== Screenshots ==
     
    4242== Changelog ==
    4343
     44= 1.0.2 =
     45* Fixed hooks
     46
    4447= 1.0.1 =
    45 Small fixes
     48* Small fixes
    4649
    4750= 1.0 =
  • emailchef/trunk/emailchef.php

    r1412727 r1413254  
    99 * Plugin URI:        http://emailchef.com/
    1010 * Description:       eMailChef: The simplest recipe to cook amazing newsletters. Automatically synchronize form submissions from Contact Form 7, Fast Secure Contact Form (FSCF) and Jetpack.
    11  * Version:           1.0.0
     11 * Version:           1.0.2
    1212 * Author:            Nicola Moretti
    1313 * Author URI:        http://nicolamoretti.com
  • emailchef/trunk/includes/class-emailchef.php

    r1412727 r1413254  
    7373        $this->set_locale();
    7474        $this->define_admin_hooks();
     75        $this->define_public_hooks();
    7576    }
    7677
     
    147148
    148149    /**
     150     * Register all of the hooks related to the public-facing functionality
     151     * of the plugin.
     152     *
     153     * @since    1.0.0
     154     * @access   private
     155     */
     156    private function define_public_hooks()
     157    {
     158        // Intercept forms submissions
     159        include_once plugin_dir_path(__FILE__) . '../includes/class-emailchef-forms-option.php';
     160        include_once plugin_dir_path(__FILE__) . '../includes/drivers/class-emailchef-drivers-forms.php';
     161        $formsDrivers = Emailchef_Drivers_Forms::getAll();
     162        foreach ($formsDrivers as $driver) {
     163            if (!$driver->isActive()) {
     164                continue;
     165            }
     166            $driver->intercept();
     167        }
     168    }   
     169   
     170    /**
    149171     * Run the loader to execute all of the hooks with WordPress.
    150172     *
Note: See TracChangeset for help on using the changeset viewer.