[PHP] Update database via email

2002-03-11 Thread Jackson Miller
I am working on a site that I would like to be able to update content (basically news stories) on via email. I am sitting with the problem trying to figure out the best way to do this before I start coding. I am curious if anyone else has done this and has a list of lessons learned that they

RE: [PHP] Update database via email

2002-03-11 Thread Adam Plocher
having it called via http). -Original Message- From: Jackson Miller [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 8:52 AM To: [EMAIL PROTECTED] Subject: [PHP] Update database via email I am working on a site that I would like to be able to update content (basically news stories

Re: [PHP] Update database via email

2002-03-11 Thread Samuel Ottenhoff
If I were you, I would start looking into procmail. http://www.procmail.org You would set up an alias on your server... Something like [EMAIL PROTECTED] Procmail would filter the email for the important stuff and pass that on to a PHP script. The php script would then update your database.

Re: [PHP] Update database via email

2002-03-11 Thread Enrico Weigelt
On Mon, Mar 11, 2002 at 11:52:20AM -0500, Jackson Miller wrote: I am working on a site that I would like to be able to update content (basically news stories) on via email. I am sitting with the problem trying to figure out the best way to do this before I start coding. i'm doing