Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Vbulletin ? Daily or weekly digests

Status
Not open for further replies.

dgermain

Programmer
Jun 29, 2004
3
CA
I have been posting the same question on VB official website with no answers...

I am looking for a way to duplicate YahooGroups digest mode?

Anybody??
 
It send out a daily or weekly email with the headers from all of the new posts in a forum.
 
Yahoo Groups, last time I used it, was using qmail and ezmlm for their system. Since all that software is free, you could duplicate exactly the functionality of Yahoo Groups without a lot of programming.


Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Unless I'm missing something this does not seem like a horribly difficult script. Let's assume that the forums are stored in a MySql database and that you are using php. If that's the case you just start the script with a query to extract the applicable headers and other info from the db, and use the result to write the body of the email. I would then assume that you have a separate table somewhere of all members who have requested this service. You simply extract the addresses of those members with another query, loop through and send the email to everyone on the list.

I know that I glossed over a lot of that, but I wasn't really certain if I even understood the question. If my assumptions were correct and you need help w/ the code please provide the applicable table / field names and I'll be glad to help w/ the code. There would be quite a few options to consider. Do you want to write the emails in html, or simple text? Are you using and opt in for the list? An opt out? Just blasting it to all members?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top