CodeXchange Thursday, April 25, 2024
Home
What's it?
Download
Register
My Snippets
Add Snippet
Search
Faq
Contact Us
Sponsors

Website hosted by


Code Snippet Preview

Review the code snippet before inserting it on your project.

Snippet Metadata
Summary: Sending Mail through authenticated SMTP server
Language: C#
Author: Prasad GVL
Author snippets RSS:
Culture: en-US
Bytes: 2408
Visual Studio 2005 Snippet:

Snippet Stats
Downloads: 26
Overall rating : 5
Average rating : Snippet rating

Snippet Preview
Code:
        /// 
        /// Prepares and sends an EMail
        /// 
        /// Recipient(s), multiple recipients should be separated by ;
        /// Sender address
        /// CC address
        /// Subject of Mail
        /// Body of Mail
        /// Which server to use to send mail
        /// Boolean, indicating if authentication required for this server
        /// String, specifies UserName to login to SMTP Server
        /// String, specifies Password to login to SMTP Server
        /// Success status(true/false)
        public static bool SendEMail(string sToAddress, string sFromAddress, string sCC, string sSubject, 
                            string sMessage, string sSMTPServer, bool bIsAuthReq, string sUserName, string sPassword)
        {
            MailMessage mmMessage=new MailMessage();

            mmMessage.To=sToAddress;
            mmMessage.From=sFromAddress;
            if (sCC.Length>0)
                mmMessage.Cc=sCC;
            mmMessage.Subject=sSubject;
            mmMessage.Priority=MailPriority.High;
            mmMessage.BodyFormat=MailFormat.Html;
            mmMessage.Body=sMessage;

            //Check whether target SMTP server requires authentication.
            //If yes, get authentication details from configuration settings.
            if (bIsAuthReq)
            {
                mmMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");  //basic authentication
                mmMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", sUserName); //set username 
                mmMessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", sPassword); //Set password 
            }

            try
            {
                SmtpMail.SmtpServer=sSMTPServer;
                SmtpMail.Send(mmMessage);
                return(true);
            }
            catch(Exception ex)
            {
                String sErr=ex.Message;
                return(false);
            }
        }

Snippet Comments
Comments:
No comments for this snippet

Other snippets that may interest you..
Related Snippets
TDT - GridPage - Page_Init (C#)
CustomValitaor (C#)
(C#)
Get the file extension from a file path or file name (VB.NET)
grab record from db and subtracts it from variable (VB.NET)



Copyright ©2009-2024 CodeXchange. Server version 1.0.3720.32855 Client Version 0.9.0.0

With from Barcelona

Most Helpful members
These are the members who have received the most points for their helpful samples
Zepho Zep
Robert Wagner
Galen Taylor

All time 'Hall of fame'
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
INI File Access (VB.NET)
Read XML from string into DataSet (C#)
Create Manifest File for your Application (VB.NET)
Round function to avoid banker's rounding (VB.NET)
Get Short and Long Path Names (VB.NET)
Sending Mail through authenticated SMTP server (C#)
One Way Hash for strings (C#)
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
How do I load an image from a URI address? (VB.NET)
Use our easy to use Visual Studio.NET addin client and start sharing code snippets with the CodeXchange community!
Refreshed: Thursday, April 25, 2024