SMTP Authentication using System.Web.Mail (CDOSYS)






4.75/5 (45 votes)
Dec 13, 2003

371892
Setting CDOSYS Schema contents to permit "tricks" with System.Web.Mail
Introduction
SMTP Authentication - expensive third party control or roll-you-own with System.Net
and sockets? Not required: The CDOSYS Schema is accessible directly from your code and you can use MailMessage.Fields
to access and change schema values to control the attributes of your email.
Using the code
Create your email using the MailMessage
class - then set the Schema Fields of Interest to you. For example, to send via an external SMTP server on port 25 with SMTP authentication name and password:
// using System.Web.Mail;
eMail = new MailMessage();
eMail.BodyFormat = MailFormat.Text;
eMail.From = _SendFrom;
eMail.Fields[http://schemas.microsoft.com/cdo/configuration/smtsperver]
= "SMTPServerName";
eMail.Fields[
"http://schemas.microsoft.com/cdo/configuration/smtpserverport"] = 25;
eMail.Fields[
"http://schemas.microsoft.com/cdo/configuration/sendusing"] = 2;
if (SMTPUser != null && SMTPPassword != null)
{
eMail.Fields[
"http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1;
eMail.Fields[
"http://schemas.microsoft.com/cdo/configuration/sendusername"] =
"SMTPAUTHUser";
eMail.Fields[
"http://schemas.microsoft.com/cdo/configuration/sendpassword"] =
"SMTPAUTHPassword";
}
eMail.To = "recipients";
SmtpMail.SmtpServer = SMTPServerName;
SmtpMail.Send(eMail);
//
Check MSDN for the CDOSYS and enumerated values.
History
- "Discovered" and reported by Darren Jefford (MS UK) at http://blogs.gotdotnet.com/darrenj/permalink.aspx/abb9e979-98dd-4172-b07c-2c4919ed94bf - thanks for saving us some time money!