EasyMail 2 video preview: How to add and send a newsletter

Pubblicato domenica 15 maggio 2011 in Alo EasyMail Newsletter

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 »

Working on EasyMail 2…

Pubblicato mercoledì 20 aprile 2011 in Alo EasyMail Newsletter

Screenshot
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 »

Contro la guerra

Pubblicato giovedì 24 marzo 2011 in Segnalazioni

colori della pace

Un appello per la manifestazione del 2 aprile promossa da Emergency contro la guerra: www.dueaprile.it.

120

Pubblicato lunedì 21 marzo 2011 in Opinioni

A poche ore dalla risoluzione Onu sono stati lanciati oltre 120 missili americani su Tripoli. E meno male che Obama è Nobel per la Pace.

A hack to solve a little bug in EasyMail 1.8.7

Pubblicato giovedì 17 marzo 2011 in Alo EasyMail Newsletter

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 :P

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") ;
}