EasyMail 2.0.1
Pubblicato il 30 maggio 2011 in Alo EasyMail NewsletterA new version to fix some bugs. I hope it could solve some reported issues.
You can download it on wp.org.
A new version to fix some bugs. I hope it could solve some reported issues.
You can download it on wp.org.
The v.2 of EasyMail Newsletter plugin for WordPress is out!
As usual you can download from wp.org.
Quickly, the new features:
To keep the plugin always update please support me donating via PayPal.
Before upgrading from v.1 to v.2, note that:
UPDATE wp_easymail_subscribers SET lists = REPLACE( lists, '_', '|');If you are upgrading from v.1.x, be sure to make a backup of plugin database tables. After installation remember to activate again the plugin.
The version 2 uses 3 tables: wp_easymail_recipients, wp_easymail_subscribers, wp_easymail_stats.
If you are upgrading from v.1.x, there are 2 tables not more used: wp_easymail_sendings, wp_easymail_trackings.
Now you can view a quick video about the new version of EasyMail plugin. You can see the new newsletter menu (now ‘newsletter’ is a custom post type) and the new ajax engine to create list of recipients.
Leggi tutto l´articolo / Read more »

Now I’m working on EasyMail v.2, my newsletter plugin for WordPress.
Here you are the structural changes about which we talked some months ago.
Leggi tutto l´articolo / Read more »
In the forum Cjellison reported me a little bug about the settings: if you un-check the 2 filter options (Convert carriage return in br tag and Apply ‘the_content’ filters and shortcodes to newsletter content) and update, the plugin doesn’t save. Infact, I forgot to include a code to save new values
Update: I’ve just uploaded the correct file in plugin repository, so you can download again the v.1.8.7 to have the fixed version.
Otherwise, here you hare the hack: add this code after line 93 of alo-easymail_option.php:
94 95 96 97 98 99 100 101 102 103 | if ( isset($_POST['filter_br']) ) { update_option('ALO_em_filter_br', "yes"); } else { update_option('ALO_em_filter_br', "no") ; } if ( isset($_POST['filter_the_content']) ) { update_option('ALO_em_filter_the_content', "yes"); } else { update_option('ALO_em_filter_the_content', "no") ; } |