eventualo
Forum Replies Created
-
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Problems with the pluginHi, sorry for delay.
Maybe it can be enough to replace line 54 of filealo-easymail_multiple-posts-placeholder.php:$real_count = count($placeholders);with this line:
$real_count = count((array)$placeholders);I hope it helps. Let me know, then I’ll update the plugin.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Language codes in emailThanks communicaction! I keep this code in mind for next plugin version and I’ll try to add it.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Unsubscribe newsletter by mobileHi golemicus, do you have a link where we can see the issue and test it?
Anyway, I’ll make tests about that.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Language codes in emailHi, thanks for the remark. I’ve not a ready solution, I have to test the compatibility with that plugin again.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] AnalyticsMmm no, the pixel tracking should not affect the link trackings.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] AnalyticsHi panbagnat, you can use Google Analytics. You can enable the utm vars for links in newsletters in plugin settings (Newsletters > Settings > tab Newsletter > Appends campaign variables to links) and see the report in Google Analytics.
I hope it helps.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] How to see which list a newsletter was sent to?The info is available on v.2.12.3.
Ok, there is a plugin hook to remove a recipient from the queue.
This is the code. I haven’t tested it but it should work. Anyway, I hope it could be a good starting point./** * To remove a recipient from the sending queue if it is an user but not subscriber */ function my_easymail_maybe_remove_from_queue( $recipient ) { global $wpdb; // Check if the recipient is a registered user but not subscriber if ( get_user_by( 'email', $recipient->email ) && ! alo_em_is_subscriber( $recipient->email ) ) { // Mark it as sent to not find it again on next queue check $wpdb->update( "{$wpdb->prefix}easymail_recipients", array( 'result' => '1' ), array( 'ID' => $recipient->ID ) ); // Return false to remove from queue return false; } return $recipient; } add_filter( 'alo_easymail_recipient_in_queue', 'my_easymail_maybe_remove_from_queue' );Hi toto, there is a difference if you like to send to “subscribers” or “registered users”.
If you select “subscribers”, the plugin searches for subscribers, that means: all not-registered guests that subscribed with the widget form, and the registered users that selected “Yes, I would like to receive the Newsletter”. You are sending to the people that subscribed to newsletters.
If you select “registered users”, the plugin searches for users, regardless of their choice about newsletters: you are looking for users, not for subscribers. In this way you are sending to your blog users, not newsletter subscribers.
I hope it helps.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] What exactly does the Bounced Tool DoOk, thanks for the report. I’ll investigate about it.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] What exactly does the Bounced Tool DoHi nordberg, the plugin automatically deletes only the “hard bounces” (a permanent error: e.g. not-existing email), not the “soft bounces” (a temporary error: e.g. full mailbox).
Maybe you don’t have any hard bounces?- This reply was modified 6 years, 4 months ago by eventualo.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Unique views and Clicks indicate 100.0%Hi François, thanks for the report. It’s very strange, it’s the first time I heard about it.
It could be related to the mail server.
Are you using a smtp sevice? Which settings did you set for cron batch settings (email per day, per batch…)?Happy for the happy end! Maybe it was an issue somewhere in cache layers and your disable/re-enable refreshed all the things.
- This reply was modified 6 years, 5 months ago by eventualo.
Hi, have you checked if the newsletter page is properly set in plugin setting? You can check it on Newsletters → Settings → tab General.
Maybe you already set it but I tell you just to be sure.Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Change Widget title tagOk, thanks to you.