Email

  • Thread starter Thread starter Entropia
  • Start date Start date
E

Entropia

Hey,

I don't know if this is the right group to post or where else I have to post
it, but I want to do the following:

I want to make a programm that receive e_mail. Then I want to perform some
actions depending on the content of the email. Does anyone has an idea where
I have to start to make this?

Thanks a lot!!!

Leen
 
The POP 3 specification will get you going. It's all text based and you can
create a POP3 system using a TCP/IP connection from the System.Net
namespace.

The class you want is TcpClient in System.Net.Sockets and the link below
will explain how the POP 3 protocol works.

http://www.faqs.org/rfcs/rfc1939.html

--
Bob Powell [MVP]
C#, System.Drawing

ANNOUNCING: Well Formed.
The monthy electronic magazine for
Windows Forms and GDI+ engineers
http://www.bobpowell.net/wellformed.htm

Check out the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm
 
Back
Top