Re: [PHP] PHP RSS to email

2008-09-09 Thread Nathan Rixham
Jason Pruim wrote: On Sep 8, 2008, at 7:59 AM, Richard Heyes wrote: Correct me if I'm wrong, but couldn't you use grab and parse the rss feeds you want, store the titles in a database, with a column for identifying if the e-mail has been sent? So every hour it checks your feeds, grabs the

Re: [PHP] PHP RSS to email

2008-09-09 Thread Richard Heyes
ps: may be worth ntoing this'd make a great open source site or even subscription service; I'd sign up for it! I've already knocked something up. It's attached if you want it. -- Richard Heyes HTML5 Graphing for IE7, FF, Chrome, Opera and Safari: http://www.phpguru.org/RGraph -- PHP

[PHP] PHP RSS to email

2008-09-08 Thread Richard Heyes
Hi, Anyone know of a PHP based RSS to email gateway. What I'm looking to do is have something running on my website that provides an interface for specifying some feeds, and these are subsequently checked every hour or so. If a new news item is found, it fires off an email to me. Basically want

Re: [PHP] PHP RSS to email

2008-09-08 Thread Jason Pruim
On Sep 8, 2008, at 6:50 AM, Richard Heyes wrote: Hi, Anyone know of a PHP based RSS to email gateway. What I'm looking to do is have something running on my website that provides an interface for specifying some feeds, and these are subsequently checked every hour or so. If a new news item

Re: [PHP] PHP RSS to email

2008-09-08 Thread Richard Heyes
Correct me if I'm wrong, but couldn't you use grab and parse the rss feeds you want, store the titles in a database, with a column for identifying if the e-mail has been sent? So every hour it checks your feeds, grabs the new ones, checks to see if emailSent=1 if not pass it to

Re: [PHP] PHP RSS to email

2008-09-08 Thread Jason Pruim
On Sep 8, 2008, at 7:59 AM, Richard Heyes wrote: Correct me if I'm wrong, but couldn't you use grab and parse the rss feeds you want, store the titles in a database, with a column for identifying if the e-mail has been sent? So every hour it checks your feeds, grabs the new ones, checks