POP-before-SMPT

S

Simon Cheng

Hi,

I am using the following C# code to send emails from my website hosted by an
ISV:

System.Web.Mail.MailMessage mm = new System.Web.Mail.MailMessage();
mm.To = "xxx";
mm.From = "xxx";
mm.Subject = "xxx";
mm.Body = "xxx";

System.Web.Mail.SmtpMail.SmtpServer = "mail.seattledaohome.org";
System.Web.Mail.SmtpMail.Send(mm);

However, since this ISV imposes a POP-before-SMTP policy, I'll have to check
POP3 emails before I can send emails via SMTP. I get the SMTP part, but how
do I code for the "checking POP3 emails" part?

Thanks,
-Simon
 

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

Members online

Forum statistics

Threads
473,767
Messages
2,569,570
Members
45,045
Latest member
DRCM

Latest Threads

Top