CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 1999
    Posts
    72

    Detecting email on server

    I am trying to make a program like the Yahoo Pager(c) program that tells you when you have mail in your email account. The user will tell the program their username and password and it will idle until a email message is send to them.

    Any idea how I can do this?

    Thanks,
    Nathan Strandberg


  2. #2
    Guest

    Re: Detecting email on server

    What you will want to look at is the POP3 protocol specification (RFC 1460). You will want to periodically connect to the users POP3 server and check if any new mail has arrived.


  3. #3
    Join Date
    Apr 1999
    Posts
    72

    Re: Detecting email on server

    Thanks, but how do I connect to the pop3? Can you give me sometype of example?

    Thanks,
    Nathan Strandberg


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured