How can i monitor an email account for new emails? I need to check for things like removes from a newsletter. Is there an api for this kind of thing?
|
|
|||
|
|
|
Depends entirely where your email is stored and what language you're using to check the email. There are modules for common email servers (IMAP, POP, etc) for most languages. More information required... |
||
|
|
|
fetchmail/procmail/custom script to process the retrieved messages? |
||
|
|
|
|
Here is a script that I use to monitor an email account for a specific type of email, and perform an action. It is written in python, and should be self explanatory:
docs on imaplib are here: http://www.python.org/doc/lib/module-imaplib.html |
||
|
|
|
|
Yes, there are 2 "APIs" for email POP and IMAP. Use a library in your chosen programming language to interface with your mail account. |
||
|
|
|
|
Depends on the amount of control you have over the email account. On UNIX, you can create a .forward file in your home directory which runs each mail through a script. For example, you could filter and forward it with the text:
This allows automatic processing of removes provided your script is intelligent enough to process the requests. |
||
|
|
|
|
Did you try pipes? This is a mashup application from yahoo, where you can put together little modules to do some work. I would try that, get a module what transforms your email to an rss feed and then use some regular expression on it, that allows me to filter and then create an RSS read out of it and then I would subscribe to this RSS feed and you are ready :) |
||
|
|
|
|
If you are on Linux/POP, pipe the email (google: cpanel forwarder pipe email) into a PHP script for example, strip the email down to Subject and Body, parse them for predetermined keywords, then log it in a database? |
||
|
|
|
|
Use Lumisoft's clients, it includes POP and IMAP clients and it's very simple to use. |
||
|
|
