I am not sure if I'm calling this correctly by the right name, what I would like to find (if it exists) is a group mailing list app (like mailman) but in php.
Here is what I expect it to do:
Allow for users to email [email protected]
with subject like TEAM123 - Deadline is 11/30/2011
(or maybe just [email protected])
and this application would CHECK the mailbox
It would check the mailbox, and forward that message to all users in TEAM123
. So the email thread would then be created.
Users then would be notified in TEAM123
, and by replying, would update the mail thread (the emails would then again go out to everyone). Maybe at this point the app would update a running conversation on the site (store it in DB? etc).
I think I'm calling the process properly 'mailing list service' etc..
Anyone aware of anything like this in PHP? I would use this for a sports league, players would just have to update via email and the whole team would be updated.
Thanks! Appreciate any ideas on this...