473,698 Members | 2,141 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

POP3 Client implementation

Hello all,

Does .NET includes any support for POP3 protocol? Or else any c#
implementation of POP3 client is available?

Regards,
--
Praveen Naregal
Nov 15 '05 #1
4 8993
Hello,

Take a look around on the gotdotnet site.

Here you can find some user samples.
http://www.gotdotnet.com/community/u...spx?query=pop3

Regards,


"Praveen Naregal" <pg*******@hotm ail.com> schreef in bericht
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hello all,

Does .NET includes any support for POP3 protocol? Or else any c#
implementation of POP3 client is available?

Regards,
--
Praveen Naregal

Nov 15 '05 #2
Arjen and Praveen,

If you have CDO installed, then the classes in the System.Web.Mail
namespace will do nicely as well.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Arjen" <bo*****@hotmai l.com> wrote in message
news:bt******** **@news2.tilbu1 .nb.home.nl...
Hello,

Take a look around on the gotdotnet site.

Here you can find some user samples.
http://www.gotdotnet.com/community/u...spx?query=pop3

Regards,


"Praveen Naregal" <pg*******@hotm ail.com> schreef in bericht
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hello all,

Does .NET includes any support for POP3 protocol? Or else any c#
implementation of POP3 client is available?

Regards,
--
Praveen Naregal


Nov 15 '05 #3


Nicholas Paldino [.NET/C# MVP] wrote:

If you have CDO installed, then the classes in the System.Web.Mail
namespace will do nicely as well.


System.Web.Mail classes can be used as an SMTP client, but how would you
use them as a POP3 client (which the OP asked about)?
--

Martin Honnen
http://JavaScript.FAQTs.com/

Nov 15 '05 #4
I'm not sure if Praveen Naregal question is answered.

But if you want to retrieve mails from a POP3 server then you must send
command...
like get messages, delete messages, etc..

The best thing what you can do is look in the sample of gotdotnet.
Because I know that there are free POP 3 classes available.

Regards


"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c om> schreef
in bericht news:Oj******** ********@tk2msf tngp13.phx.gbl. ..
Arjen and Praveen,

If you have CDO installed, then the classes in the
namespace will do nicely as well.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"Arjen" <bo*****@hotmai l.com> wrote in message
news:bt******** **@news2.tilbu1 .nb.home.nl...
Hello,

Take a look around on the gotdotnet site.

Here you can find some user samples.
http://www.gotdotnet.com/community/u...spx?query=pop3

Regards,


"Praveen Naregal" <pg*******@hotm ail.com> schreef in bericht
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hello all,

Does .NET includes any support for POP3 protocol? Or else any c#
implementation of POP3 client is available?

Regards,
--
Praveen Naregal



Nov 15 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2479
by: Robin Becker | last post by:
Hi, I'm getting vast numbers of fake upgrade emails containing some kind of virus. My rather old client can be made to reject these based on some patterns in the subject line. They're nearly all based on the word 'New', 'Latest', 'Microsoft', 'Patch', 'Pack', ... etc etc. Is there a python tool that can be made to delete these from my POP3 mail box rather than let my client reject? Quite a few seem to have semi-valid return addresses so...
4
1937
by: crystal1 | last post by:
Not sure if this has been done... Has anyone created a python script that listens on the default POP3 port for incoming mail, kills certain messages based on a criteria, and forwards the output to a non-standard port the POP3 server is listening on? Upon recieving requests from a sender, the script would transparently forward traffic to the off port unless a violating condition is encountered. I'd like to use the listening python...
3
2539
by: Jay | last post by:
I'm not asking for any code (although it would be nice if someone got a sample). But how would i design a web based POP3 client? I want the users to be able to access the emails from Outlook, and the web based email client. What i'm not sure how to design is where to store the emails for the web based client. Should i operate on the mailroot folder directly, or create another folder on the server (or another server), where the emails...
2
2315
by: Rui | last post by:
I need to write a proxy between pop3 client and pop3+ssl server. This proxy will receive pop3 commands from the client and will translate those commands for a pop3+ssl server, then it will receive returns from pop3+ssl server and it will send them to the primary client. How can I write this service in C#?
2
2003
by: Shimon Sim | last post by:
Is there a way to get e-mails with attachments using .NET 2.0? If not does anybody knows a component that can do this? Thank you, Shimon.
1
10060
by: bobano | last post by:
Hi everyone, I am writing a POP3 Client program in Perl. You connect to a POP3 Server and have a running conversation with the mail server using commands from the RFC 1939 Post Office Protocol. This program can perform 5 options from a menu on your POP3 mail by logging in with the correct POP3 server along with a user name and password that you use to log in to your ISP. The user name and password as well as the server name are all hard-coded...
4
9117
by: Pavils Jurjans | last post by:
Hello list, In order to do some mail processing before it ever gets to the mail client, we plan to implement a POP3 proxy solution. Ie, POP3 mail client would connect to the proxy instead of the actual POP3 mail server, and the proxy would do the actual connection to the mail server, process the incoming messages a little bit, and stream them to the mail client. Could someone please point me to a decent solution, be it open source or...
4
6299
by: =?Utf-8?B?QWxwYW5h?= | last post by:
I am making a thin email client and want to get emails from a pop3 server...Is there any built in support in C# to get emails from a pop3 server and parse the email to show up on the UI ?
5
2667
by: Craig Buchanan | last post by:
I would like to monitor a POP3 mailbox with multiple clients. However, I want to ensure that each message is processed by only one client. In essence, I would like to treat a POP3 mailbox like a queue. From what I've read thus far, atomic message access (if this is the right term) isn't a native feature of the POP3 protocol. Am I mistaken? My approach thus far, is to have one thread connect to the mailbox periodically, look for new...
0
8673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8601
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9021
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7716
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6518
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3043
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2327
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
1998
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.