Click here to Skip to main content
6,290,721 members and growing! (13,332 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » General     Intermediate

SMTP Authentication using System.Web.Mail (CDOSYS)

By C.Shattock

Setting CDOSYS Schema contents to permit "tricks" with System.Web.Mail
C#, VB, Windows, .NET 1.1, ASP.NET, Visual Studio, Dev
Posted:12 Dec 2003
Views:223,701
Bookmarked:64 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
46 votes for this article.
Popularity: 6.72 Rating: 4.04 out of 5
3 votes, 6.5%
1

2
4 votes, 8.7%
3
4 votes, 8.7%
4
35 votes, 76.1%
5

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

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

C.Shattock


Member

Location: United Kingdom United Kingdom

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 36 (Total in Forum: 36) (Refresh)FirstPrevNext
GeneralWhat about saved password in Outlook Express ? Pinmemberblackjack20083:13 10 Jun '09  
GeneralSave mail in Sent items PinmemberPardeep Bogra4:36 16 Jun '08  
GeneralBulk Emails: Does anyone know how to send multiple emails inside one connect/disconnect? Pinmemberremoteportal5:38 17 Apr '08  
GeneralError 451? Fix is here! Pinmembermd2k3:10 8 Aug '07  
GeneralIf you are having issues with authentication you want to read this... PinmemberBrotherC10:04 31 Jan '07  
GeneralRe: If you are having issues with authentication you want to read this... Pinmemberhepsy.i0:58 26 Oct '07  
GeneralTo/From Addresses in ASP.NET Email Sending Pinmemberf.z10:59 25 Dec '06  
Generalh PinmemberFarhan Hashmi14:08 27 Nov '06  
GeneralThis Code Does not work.... Help Me out.... Pinmembernilsgate1:20 22 Jun '06  
GeneralRe: This Code Does not work.... Help Me out.... Pinmemberwsdelicate8:36 28 Jun '06  
GeneralRe: SMTP Authentication using System.Web.Mail (CDOSYS) Pinmembermalharone7:25 8 Nov '05  
GeneralDoes anyone know where the cdosys schema has moved? Pinmemberdaniel1122338:07 4 Nov '05  
GeneralRe: Does anyone know where the cdosys schema has moved? Pinmemberjamiranda4:34 21 Dec '05  
Generalthank you!!!! Pinsussansys19:43 17 Jun '05  
Generalthank you Pinmemberfatibomba1:47 7 Apr '05  
GeneralUsing C++ Pinmemberadrianodri2:08 10 Dec '04  
GeneralFantastic! PinmemberJayDreyer11:04 23 Sep '04  
GeneralError No 451 PinsussAnonymous23:15 31 Jul '04  
GeneralExternal SMTP Server with CDOSYS PinsussRameshN313:46 30 Jun '04  
GeneralRe: External SMTP Server with CDOSYS Pinmemberfulgeras23:34 13 Jan '05  
GeneralRe: External SMTP Server with CDOSYS PinsussAnonymous1:49 17 Aug '05  
GeneralRe: External SMTP Server with CDOSYS PinsussAnonymous1:53 17 Aug '05  
GeneralCan't connect? PinsussAdrianFoobar1:58 22 Apr '04  
GeneralRe: Can't connect? PinsussAdrianFoobar4:21 22 Apr '04  
GeneralDifficulties in setting Fields Pinmemberim_tct8:58 20 Apr '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 12 Dec 2003
Editor: Nishant Sivakumar
Copyright 2003 by C.Shattock
Everything else Copyright © CodeProject, 1999-2009
Web15 | Advertise on the Code Project