By okkhalid on Monday, 19 November 2018
Posted in General
Replies 8
Likes 0
Views 707
Votes 0
Hello, not sure if easy blog the new version will support a notification system to all registered users in the Joomla site.

I would like to use Easy blog as a newsletter to all my registered users in my site, so once I post something everyone in my site will get a notification, except some users that i would like to specify them based on their username and emails.

Please help how I can achieve that.
Hi there,

You should be able to achieve them by enabling this setting http://take.ms/iCItK but it is not possible to do exceptional based on users currently.

Thanks for your understanding.
·
Monday, 19 November 2018 12:00
·
0 Likes
·
0 Votes
·
0 Comments
·
is there any way to have to exclude some Joomla users from getting the notification. Please, this is very important, also it would be a very nice feature. PLEASE

Also, will the author get notified for his post? in the old version, the author did not get any notification if he posts.
·
Thursday, 22 November 2018 13:46
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

is there any way to have to exclude some Joomla users from getting the notification. Please, this is very important, also it would be a very nice feature. PLEASE

Perhaps it would be best if you can submit a feature request regarding this issues by creating a new ticket on the forums and set it to "Feature Request" so that everyone else could vote for it. We will prioritize this feature during the development process for the next major version of Easyblog if there are more people request on this.

Also, will the author get notified for his post? in the old version, the author did not get any notification if he posts.

You need to enable this setting http://take.ms/haw7G in order to achieve them.
·
Thursday, 22 November 2018 13:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you, anyway that we have a code that says sent to all except this email: sample@comain.com

There is one email in my users, that asked strictly that does not want any update from us. please help
·
Friday, 07 December 2018 23:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You can included them here .../administrator/components/com_easyblog/includes/notification/notification.php under sendSubscribers() functions on line 425-463.

Do remember to do full backup on this files as it will be overridden once you update/upgrade your site.
·
Monday, 10 December 2018 10:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi again,

Really not sure how to include the email into the code so it will make an exception and not to send the email notification to them.
example, if I have 2 emails that I do not want them to get any notifications from the easyblog: support@domain.com and support2@domain.com

How I can add them:


// @rule: Get all email addresses for the whole site.
if ($config->get( 'notification_allmembers' )) {

// all superadmins user id
$saUsersIds = EB::getSAUsersIds();

$collation = EB::getUsersTableCollation('joomla');

$query = 'select a.`email` ' . $collation . ' AS `email` from `#__users` as a';
$query .= ' where a.`block` = 0';
$query .= ' and a.`id` NOT IN (' . implode(',', $saUsersIds) . ')';

// Privacy check
if ($post->access > 0) {
$query .= ' AND ';

if (!EB::easysocial()->exists()) {
$query .= $db->qn('a.id') . ' != ' . $db->Quote('0');
} else {
$query .= EB::easysocial()->getSubscriberAccessQuery($post->access, 'a.id', $post->created_by);
}
}

// guest subscribers
$collation = EB::getUsersTableCollation('eb');
$query .= ' UNION ';
$query .= ' select a1.`email` ' . $collation . ' AS `email` FROM `#__easyblog_subscriptions` as a1';
$query .= ' WHERE ';

// Privacy check
if ($post->access > 0) {
if (!EB::easysocial()->exists()) {
$query .= $db->qn('a1.user_id') . ' != ' . $db->Quote('0');
} else {
$query .= EB::easysocial()->getSubscriberAccessQuery($post->access, 'a1.user_id', $post->created_by);
}
} else {
$query .= $db->qn('a1.user_id') . ' = ' . $db->Quote('0');
}
} else {
·
Tuesday, 11 December 2018 12:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

I am really sorry but unfortunately we cannot accommodate your request currently as it is beyond our support scope's policy as outlined in https://stackideas.com/support

Having said that, if you require us to perform the customization for you, you can always request for a quote from us at https://crm.stackideas.com and select "Customizations" . Our sales person would be glad to send you a quote for the customizations that you have requested.

Thanks for your understanding.
·
Tuesday, 11 December 2018 12:27
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post