Email parser to Database

  • Thread starter Thread starter jaydev
  • Start date Start date
J

jaydev

Hi, I need to write an application to parse the incoming email and
parse the fields and store the values in the database. Can anyone give
me a direction to do this?

Thanks for your help.

Thanks,
Jay
 
jaydev said:
Hi, I need to write an application to parse the incoming email and
parse the fields and store the values in the database. Can anyone give
me a direction to do this?

Read RFC 821 and 822 (actually the newer versions, but ...) - they
should tell you all about the email format.

Arne
 
jaydev said:
I want to know how to monitor the email?

That depends on what mail server you want to hook into. And
where you want to hook in (front SMTP or back POP3/IMAP4/whatever).

Arne
 
That depends on what mail server you want to hook into. And
where you want to hook in (front SMTP or back POP3/IMAP4/whatever).

Arne

It will be a pop3 server.

Thanks
 
jaydev said:
It will be a pop3 server.

Then look at 1939 and see how you connects to the server,
list emails, retrieve emails but keep a copy on the server.
And then parse what you retrieve.

Arne
 
Then look at 1939 and see how you connects to the server,
list emails, retrieve emails but keep a copy on the server.
And then parse what you retrieve.

Arne

Could you please explain more or show me some direction to read or
sample code?
 
jaydev said:
Could you please explain more or show me some direction to read or
sample code?

Read the POP3 RFC, write some code and when you are stuck post some
code with a description of the problem with it.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top