Changeset 1413254
- Timestamp:
- 05/09/2016 06:49:59 PM (10 years ago)
- Location:
- emailchef/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (4 diffs)
-
emailchef.php (modified) (1 diff)
-
includes/class-emailchef.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
emailchef/trunk/README.txt
r1412735 r1413254 4 4 Tags: emailchef, newsletter, email, marketing, automation, form, forms 5 5 Requires at least: 4.0 6 Tested up to: 4.5. 17 Stable tag: 1.0. 16 Tested up to: 4.5.2 7 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 16 16 17 17 With 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 12000emails/month, with plans starting at 10$ / month for more.18 eMailChef is forever free for less than 500 customers and unlimited emails/month, with plans starting at 10$ / month for more. 19 19 This is the perfect marketing tool to add an intuitive and solid eMail campaign solution to your website. 20 20 … … 33 33 = Is it free? = 34 34 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/).35 eMailChef has a free plan up to 500 contacts. Higher plans can be checked at [eMailChef pricing page](http://emailchef.com/pricing/). 36 36 37 37 == Screenshots == … … 42 42 == Changelog == 43 43 44 = 1.0.2 = 45 * Fixed hooks 46 44 47 = 1.0.1 = 45 Small fixes48 * Small fixes 46 49 47 50 = 1.0 = -
emailchef/trunk/emailchef.php
r1412727 r1413254 9 9 * Plugin URI: http://emailchef.com/ 10 10 * 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. 011 * Version: 1.0.2 12 12 * Author: Nicola Moretti 13 13 * Author URI: http://nicolamoretti.com -
emailchef/trunk/includes/class-emailchef.php
r1412727 r1413254 73 73 $this->set_locale(); 74 74 $this->define_admin_hooks(); 75 $this->define_public_hooks(); 75 76 } 76 77 … … 147 148 148 149 /** 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 /** 149 171 * Run the loader to execute all of the hooks with WordPress. 150 172 *
Note: See TracChangeset
for help on using the changeset viewer.