Hi
I was searching for automail on new subscriber, but it is not possible to have a template for this. Only Text mail will be sent?
]]>I wonder where is my last post about it.
I still have a problem that posts a continiously lineof text without any brakes.
I now have no pdf plugins and , I guess, nothing that could filter/process text as you wrote last time.
]]>Hello! I receive duplicate post notifications, what can I do?
It is sent by php mailer.
Thank you!
Max
Hi, if you have newer versions of php installed on your server you will notice that plugin doesn′t work. That because “array_column” function was deprecated. You must code your own function for that. The next code is a solution for that problem. Paste it on the top of mail2users.php file (behind first coments):
if (! function_exists(‘array_column’)) {
function array_column(array $input, $columnKey, $indexKey = null) {
$array = array();
foreach ($input as $value) {
if ( !array_key_exists($columnKey, $value)) {
trigger_error(“Key \”$columnKey\” does not exist in array”);
return false;
}
if (is_null($indexKey)) {
$array[] = $value[$columnKey];
}
else {
if ( !array_key_exists($indexKey, $value)) {
trigger_error(“Key \”$indexKey\” does not exist in array”);
return false;
}
if ( ! is_scalar($value[$indexKey])) {
trigger_error(“Key \”$indexKey\” does not contain scalar value”);
return false;
}
$array[$value[$indexKey]] = $value[$columnKey];
}
}
return $array;
}
}
Hi,
Recently I started using this plugin and I love it, it works very easy, wich is perfect for a novice like me ?? But when I open the mail, that I send out with the plugin, in Outlook it has a big grey block on both sides of the mail. What can I do about that. It looks ugly and weird and it takes the focus away from the mail it self.
Hope you can help me fix this,
Kind regards, Jo
Hi,
We have w website with Woocommerce installed which creates it’s own user role of Customer
This shows up in the ‘Select users by role’ section successfully.
However we then allocate these customers to different roles (North, South East) etc. These roles have been created and mimic the Customer role.
However, these new roles do not show in ‘Select users by role’ facility, even though users have been allocated to the roles.
Is there a fix for this?
thanks
John
Hi,
are there any plans to enable users to re-subscribe, once they unsubscribed?
Currently, there is no way of getting a user out of the unsubscribed list. An option for this in the user’s profile would be nice.
Also, it would be better, if users could subscribe to individual posts or pages themselves, instead of the authors deciding this. Otherwise: Really nice, little plugin. Please keep it (almost) that simple.
Regards
Manfred
Hi, I am a novice at this, so my apologies if I ask a stupid question.
When I send out mails what is the mail adress the recipient sees. And can I change that?
Hi,
When selecting the Settings or the Unsubscribed Users option, both these pages come up as completely empty – no content (the menu is still displayed, so “just” the content area is blank on the admin interface)
]]>Hi,
thanks for the nice plugin.
I have not been able to find out yet how to create/modify the email template which is used to ‘Notify users groups about post’ after the post is being published. Could you please let me know.
Thanks