Questions tagged [pop3]

Post Office Protocol version 3

Useful links

945 questions
85
votes
6 answers

The remote certificate is invalid according to the validation procedure

Running the following code, I get an exception: using (var client = new Pop3Client()) { client.Connect(provider.ServerWithoutPort, provider.Port, true); } The Exception I get: The remote certificate is invalid according to the validation…
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
83
votes
4 answers

Receiving email in Node.js

I see a lot of Node.js modules out there that sends mail through SMTP. But is there a module to receive mail?
foobar
  • 10,854
  • 18
  • 58
  • 66
75
votes
8 answers

Reading Email using Pop3 in C#

I am looking for a method of reading emails using Pop3 in C# 2.0. Currently, I am using code found in CodeProject. However, this solution is less than ideal. The biggest problem is that it doesn't support emails written in unicode.
Eldila
  • 15,426
  • 23
  • 58
  • 62
53
votes
15 answers

Integrating POP3 client functionality into a C# application?

I have a web application that requires a server based component to periodically access POP3 email boxes and retrieve emails. The service then needs to process the emails which will involve: Validating the email against some business rules (does it…
flesh
  • 23,725
  • 24
  • 80
  • 97
41
votes
5 answers

Fetching mail from a POP3 server using php

I am trying to fetch a mail from POP3 (I am using POP3 mail server and I am trying to fetch the mail content and store into a database table for my project.), but I can't find any PHP script for that, all are only for IMAP. Do you know how to fetch…
VinothPHP
  • 821
  • 2
  • 10
  • 22
37
votes
6 answers

Retrieving all unread emails using javamail with POP3 protocol

I am trying to access my gmail account and retrieve the information of all unread emails from that. I have written my code after referring many links. I am giving a few links for reference. Send & Receive emails through a GMail account using…
MysticMagicϡ
  • 28,593
  • 16
  • 73
  • 124
25
votes
3 answers

Open Source Cocoa/Cocoa-Touch POP3/SMTP library?

I'm looking to write a sample application speaking to a POP3/SMTP server. Instead of re-inventing the wheel with BSD sockets and CFNetwork type calls, I'm curious if there is currently any open source libraries that already take care of alot of the…
Coocoo4Cocoa
  • 48,756
  • 50
  • 150
  • 175
24
votes
3 answers

django to send AND receive email?

I have gotten quite familiar with django's email sending abilities, but I havn't seen anything about it receiving and processing emails from users. Is this functionality available? A few google searches have not turned up very promising results.…
Jiaaro
  • 74,485
  • 42
  • 169
  • 190
19
votes
6 answers

What's a good mail server for development use?

I'm doing some development which will involve reacting to emails, and I'd like to use a local IMAP mail server for this. I currently use Devnull SMTP server for testing of sending emails, but this just logs and discards messages, it doesn't do IMAP…
Peter Boughton
  • 110,170
  • 32
  • 120
  • 176
16
votes
5 answers

Is there support for a POP3 client using C# in the .Net Framework?

Is there support for POP3 client in the .net framework? If so, please tell me it's name as I have been searching for it, but I was unable to find it. Regards!
Arya
  • 8,473
  • 27
  • 105
  • 175
16
votes
11 answers

Recommendations for a .NET component to access an email inbox

I've been asked to write a Windows service in C# to periodically monitor an email inbox and insert the details of any messages received into a database table. My instinct is to do this via POP3 and sure enough, Googling for ".NET POP3 component"…
Ian Nelson
  • 57,123
  • 20
  • 76
  • 103
15
votes
3 answers

retrieve email using c#?

I want to retrieve emails from my Go Daddy account using C#. I tested OpenPop.NET to do that like so: OpenPop.Pop3.Pop3Client PopClient = new OpenPop.Pop3.Pop3Client(); PopClient.Connect("pop.secureserver.net", 995, true); …
Khalid Omar
  • 2,353
  • 5
  • 35
  • 46
15
votes
7 answers

What protocols and servers are involved in sending an email, and what are the steps?

For the past few weeks, I've been trying to learn about just how email works. I understand the process of a client receiving mail from a server using POP pretty well. I also understand how a client computer can use SMTP to ask an SMTP server to…
stalepretzel
  • 15,543
  • 22
  • 76
  • 91
15
votes
5 answers

accessing my gmail inbox via php code

how i can access my gmail account through my php code? I need to get the subject and the from address to from my gmail account.And then i need to mark the accessed as read on gmail Should i use gmail pop3 clint?is that any framework that i can use…
user156073
  • 1,933
  • 8
  • 31
  • 37
13
votes
4 answers

parsing email text reply/forward

I am creating a web based email client using c# asp.net. What is confusing is that various email clients seem to add the original text in alot of different ways when replying by email. What I was wondering is that, if there is some sort of…
Theofanis Pantelides
  • 4,724
  • 7
  • 29
  • 49
1
2 3
62 63