vote up -2 vote down star

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?

flag

59% accept rate
If you're looking for an API, please indicate what technology stack you're using. .NET, java, php, ruby, whatever... – Chris Farmer Sep 19 '08 at 5:13

8 Answers

vote up 1 vote down check

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...

link|flag
Why was this marked as an answer? – Jerub Sep 19 '08 at 5:32
vote up 1 vote down

fetchmail/procmail/custom script to process the retrieved messages?

link|flag
vote up 1 vote down

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:

#!/usr/bin/python

HOST = 'example.com'
USERNAME = 'account'
PASSWORD = 'secret'

import subprocess
import imaplib
import re
import os

search_for_subject = 'Alert'

im = imaplib.IMAP4(HOST)
im.login(USERNAME, PASSWORD)
im.select()

result = im.search(None, "SUBJECT", search_for_subject)[1][0].split()

RE = re.compile('^serial = (\d+)$', re.MULTILINE)

for n in result:
    typ, data = im.fetch(n,'(RFC822)')
    body = data[0][1]

    # read the body here:

    m = RE.search(body)
    if m:
        serial = m.group(1)
        print 'calling somescript', serial
        subprocess.call(['somescript', some_identifier_from_email])
        im.store(n, '+FLAGS', '\Deleted')

im.expunge()

docs on imaplib are here: http://www.python.org/doc/lib/module-imaplib.html

link|flag
vote up 0 vote down

Yes, there are 2 "APIs" for email POP and IMAP.

Use a library in your chosen programming language to interface with your mail account.

link|flag
vote up 0 vote down

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:

|sed "s/from/to/g" | mailx -s otheraccount@isp.com

This allows automatic processing of removes provided your script is intelligent enough to process the requests.

link|flag
vote up 0 vote down

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 :)

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

Use Lumisoft's clients, it includes POP and IMAP clients and it's very simple to use.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.