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
 
Back
Top