Reputation: 1131
I am helping re-code a website that allows teachers to text message/email their students about upcoming new/assignments. Students can subscribe to their teacher's notifications by texting/emailing a flag to the inbox.
How would I go about watching these inbox's for incoming messages, to then flag php procedures (using cpanel scripts to interact with the email system)?
**If any more information is needed from me to make this more clear, please post.*
Upvotes: 0
Views: 375
Reputation: 10341
To handle incoming emails using PHP you will need to "pipe" the emails to a script.
But, if you are specifically wanting to manage a Newsletter/Mailing List, then you may also want to look at something like PHPList as you may need to satisfy legal requirements for handling OptIn/OptOut, etc. actions.
Upvotes: 1