pop3/smtp Class in C# ?

  • Thread starter Thread starter cybertof
  • Start date Start date
C

cybertof

Hello,

Is there an existing pop3/smtp class (in the framework or 3rd party)
that would allow sending/receiving emails within a C# application ?
(i do not want to use CDO through outlook but pop3/smtp directly)

Regards,
Cybertof.
 
Look in the System.Web.Mail namespace. The MailMessage, MailAttachment and SmtpMail classes should handle what you need. However, be
advised that the SmtpMail class does not support authentication. If your SMTP Server requires authentication you'll need to search
out a 3rd party component that supports that feature.

ChrisG
 
Juyt note that this will still use CDO underneath (but not through Outlook).
-mike
MVP

Chris Gallucci said:
Look in the System.Web.Mail namespace. The MailMessage, MailAttachment and
SmtpMail classes should handle what you need. However, be
advised that the SmtpMail class does not support authentication. If your
SMTP Server requires authentication you'll need to search
 

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

Back
Top