Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Commbull (Community Bulletin) 5.1b Details »»
Commbull (Community Bulletin) 5.1b
Version: 5.1a, by grandeur_69 grandeur_69 is offline
Developer Last Online: Apr 2014 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.8.4 Rating:
Released: 12-16-2009 Last Update: 02-03-2011 Installs: 208
DB Changes Uses Plugins Template Edits
Re-useable Code Additional Files Translations  
No support by the author.

Community Bulletin:

This mod grabs all the latest information in your forum (posts, threads, events, birthdays, etc) and puts them into a newsletter to be sent to all your members that subscribe.

This mod has been around a long time and gone through many versions. It has been a paid version for a number of years with great success, but it's time to pass on the reigns.

[edit Feb 03, 2011]
Attempted fix for sending to users that are part of multiple user groups

[installation]
- upload some files
- upload the product.xml
- make 1 mod to the usercp options template
- FULL DETAILS in the README.txt

[note] many people ask why all the images, etc don't show up in the HTML version of what is in your forum. This is because most mail clients strip out the CSS and vbulletin is 99% CSS. I have created an HTML version that is nice and clean, but is forum independent. If you know what you are doing, you can edit this HTML file and build your own newsletter.

Download Now

File Type: zip html_newsletter_images.zip (3.9 KB, 935 views)
File Type: zip commbull.zip (52.1 KB, 686 views)

Screenshots

File Type: jpg commbull_edit.jpg (27.2 KB, 0 views)
File Type: jpg commbull_email_html.jpg (29.7 KB, 0 views)
File Type: jpg commbull_email_txt.jpg (19.7 KB, 0 views)
File Type: jpg commbull_html.jpg (24.0 KB, 0 views)
File Type: jpg commbull_sending.jpg (19.4 KB, 0 views)
File Type: jpg commbull_txt.jpg (24.4 KB, 0 views)
File Type: gif masthead_green_tab.gif (1.2 KB, 0 views)
File Type: gif masthead_green_tab_selected.gif (767 Bytes, 0 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
2 благодарности(ей) от:
M Shaker

Comments
  #112  
Old 03-05-2010, 12:04 PM
aldamon aldamon is offline
 
Join Date: Oct 2001
Location: Durham, NC
Posts: 82
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by grandeur_69 View Post
PS. hopefully next week, my team and I will start working on the vb4 version. We will try to add the cron feature back in, but no guarantees as many users still have problems with server load and we haven't been able to find a reasonable solution.
Great news!
Reply With Quote
  #113  
Old 03-12-2010, 04:51 AM
inciarco's Avatar
inciarco inciarco is offline
 
Join Date: Mar 2007
Posts: 758
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Interesting Newsletter Mod.

I have 3 questions:

-1. Is there a way/option to Exclude Certain Usergroups from Getting the Newsletter?
(this is very important because even if the users are subscribed to threads, for some usergroups would be nice for them Not to receive Newsletters).

-2. How can I Massive Disable the Option "Receive Community Bulletin Newsletters"?
(I can see that is Enabled by Default but I need to disable it for Existing Users once this Mod Installed)

-3. How can I choose for the "Receive Community Bulletin Newsletters" to be Disabled by Default?
(I think is better to let the Users Choose if the want to be Included on the Newsletter and not to Force them to Receive the First One to Choose to be Excluded)

My Best Regards.

Reply With Quote
  #114  
Old 03-12-2010, 01:28 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by inciarco View Post
Interesting Newsletter Mod.

I have 3 questions:

-1. Is there a way/option to Exclude Certain Usergroups from Getting the Newsletter?
(this is very important because even if the users are subscribed to threads, for some usergroups would be nice for them Not to receive Newsletters).
Yes.

Quote:
Originally Posted by inciarco View Post
-2. How can I Massive Disable the Option "Receive Community Bulletin Newsletters"?
(I can see that is Enabled by Default but I need to disable it for Existing Users once this Mod Installed)
You can use a MySQL database query:

Code:
UPDATE {prefix-if-used}user SET receivebulletin = '0';
Quote:
Originally Posted by inciarco View Post
-3. How can I choose for the "Receive Community Bulletin Newsletters" to be Disabled by Default?
(I think is better to let the Users Choose if the want to be Included on the Newsletter and not to Force them to Receive the First One to Choose to be Excluded)
You can use phpMyAdmin to modify table user.receivebulletin to set default to 0. That way any new members will also have it set to default.

Or, if you haven't yet installed it,

1. edit product-Commbull.xml
2. at around line 22, find

Code:
if (!isset($user_cols['receivebulletin'])) $db->query_write("ALTER TABLE " . TABLE_PREFIX . "user ADD receivebulletin SMALLINT (5) UNSIGNED DEFAULT '1' not null");
3. change the '1' to '0'

Code:
if (!isset($user_cols['receivebulletin'])) $db->query_write("ALTER TABLE " . TABLE_PREFIX . "user ADD receivebulletin SMALLINT (5) UNSIGNED DEFAULT '0' not null");
4. at around line 27, find

Code:
$db->query_write("UPDATE " . TABLE_PREFIX . "user SET receivebulletin=1");
5. change to

Code:
$db->query_write("UPDATE " . TABLE_PREFIX . "user SET receivebulletin=0");
Reply With Quote
  #115  
Old 03-12-2010, 02:18 PM
grandeur_69 grandeur_69 is offline
 
Join Date: Feb 2003
Location: Kelowna, BC, Canada
Posts: 166
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks DJ for responding ... I have absolutely nothing that I can add to that. I had already changed the mod for future updates to change the default settings to 0 to comply with SPAM policies.
Reply With Quote
  #116  
Old 03-12-2010, 02:26 PM
inciarco's Avatar
inciarco inciarco is offline
 
Join Date: Mar 2007
Posts: 758
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by djbaxter View Post
Yes.

You can use a MySQL database query:

Code:
UPDATE {prefix-if-used}user SET receivebulletin = '0';


You can use phpMyAdmin to modify table user.receivebulletin to set default to 0. That way any new members will also have it set to default.

Or, if you haven't yet installed it,

1. edit product-Commbull.xml
2. at around line 22, find

Code:
if (!isset($user_cols['receivebulletin'])) $db->query_write("ALTER TABLE " . TABLE_PREFIX . "user ADD receivebulletin SMALLINT (5) UNSIGNED DEFAULT '1' not null");
3. change the '1' to '0'

Code:
if (!isset($user_cols['receivebulletin'])) $db->query_write("ALTER TABLE " . TABLE_PREFIX . "user ADD receivebulletin SMALLINT (5) UNSIGNED DEFAULT '0' not null");
4. at around line 27, find

Code:
$db->query_write("UPDATE " . TABLE_PREFIX . "user SET receivebulletin=1");
5. change to

Code:
$db->query_write("UPDATE " . TABLE_PREFIX . "user SET receivebulletin=0");
Quote:
Originally Posted by grandeur_69 View Post
thanks DJ for responding ... I have absolutely nothing that I can add to that. I had already changed the mod for future updates to change the default settings to 0 to comply with SPAM policies.
Thank You Very Much For Your Reply and Guide. :up:

I Have One Final Question that Comes From My First Question:

-1A How Can I Exclude Certain Usergroups From Receiving the Newsletter?

- What is the Option I Should Set and Where is it Located (or the Process / Plugin Edits / File Edits I Should Modify) to Exclude Specific Usergroups From Getting the Newsletter?

I Tried to Find it but I Didn't Saw it.

I Appreciate Your Support, the Mod is Very Interesting and I'll be Testing it on my Test Forum.

My Best Regards.

Reply With Quote
  #117  
Old 03-12-2010, 02:35 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It's in the setup for the newsletter itself:

Admin CP | Users | Send CommBull Newsletter (or words to that effect)

In there you can select which forums to include and how many of each type of thread/poll etc. to include as well as which usergroups will receive the newsletter.
Attached Images
File Type: jpg 1usergroups.jpg (26.5 KB, 0 views)
Reply With Quote
  #118  
Old 03-12-2010, 02:47 PM
inciarco's Avatar
inciarco inciarco is offline
 
Join Date: Mar 2007
Posts: 758
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by djbaxter View Post
It's in the setup for the newsletter itself:

Admin CP | Users | Send CommBull Newsletter (or words to that effect)

In there you can select which forums to include and how many of each type of thread/poll etc. to include as well as which usergroups will receive the newsletter.
Thank You Very Much For Your Reply. :up:

I Found the List of Usergroups at the End of

ACP > Community Bulletin > Settings

Below the "Include Info From Forums..." and under the Title "Mail users from the following usergroups...". :up:

I Appreciate Your Guide.

My Best Regards.

Reply With Quote
  #119  
Old 03-13-2010, 03:30 PM
Scalemotorcars's Avatar
Scalemotorcars Scalemotorcars is offline
 
Join Date: Mar 2006
Location: NC
Posts: 619
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sure would like to see an example of an HTML email before using this. Can someone post a screenshot. Thanks... :up:
Reply With Quote
  #120  
Old 03-14-2010, 05:56 PM
khalled khalled is offline
 
Join Date: Apr 2007
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by grandeur_69 View Post
interesting. We have commbull running on 8 of our forums and on another 13 with a client and all the forums have different add-ons and we have not experienced any of these problems. We do have all our forums with vb mailqueue on, so maybe that'll be something we have to look into a bit further when we do the upgrade to vb4.
we wait grandeur_69; for Commbull (Community Bulletin) for vb 4.0.2
Reply With Quote
  #121  
Old 03-14-2010, 06:23 PM
djbaxter djbaxter is offline
 
Join Date: Aug 2006
Location: Ottawa, Canada
Posts: 2,601
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by khalled View Post
we wait grandeur_69; for Commbull (Community Bulletin) for vb 4.0.2
This commercial product has been released here as a free product because the author, grandeur_69, no longer has the time to keep up with the necessary upgrades. The hope, I believe, was that others would pick up the product and extend it for 4.x.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:26 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06448 seconds
  • Memory Usage 2,381KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_code
  • (9)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete