Occurs when the client is establishing the SSL connection.
[Visual Basic] Public Event OnSecuring As OnSecuringEventHandler Public Delegate Sub OnSecuringEventHandler( _ ByVal sender As Object, _ ByRef cancel As Boolean _ )
[C#] public event OnSecuringEventHandler OnSecuring; public delegate void OnSecuringEventHandler( object sender, ref bool cancel );
[C++] public: __event OnSecuringEventHandler^ OnSecuring; public __gc __delegate void OnSecuringEventHandler( Object^ sender, Boolean % cancel );
Event Data
Remarks
Example
[Visual Basic, C#, C++] To get the full samples of EASendMail, please refer to Samples section.
[VB - Send Email over SSL/TLS with Event Handler] Imports EASendMail Module Module1 Sub OnQuit( ByVal sender As Object, ByRef cancel As Boolean ) Console.WriteLine("Disconnecting ... ") End Sub Sub OnSecuring( _ ByVal sender As Object, _ ByRef cancel As Boolean _ ) Console.WriteLine("Securing ... ") End Sub Sub OnAuthorized( ByVal sender As Object, ByRef cancel As Boolean ) Console.WriteLine("Authorized") End Sub Sub OnIdle( ByVal sender As Object, ByRef cancel As Boolean ) ' Application.DoEvents() End Sub Sub OnSendingDataStream( ByVal sender As Object, ByVal sent As Integer, ByVal total As Integer, ByRef cancel As Boolean ) Console.WriteLine(String.Format("{0}/{1} sent", sent, total)) End Sub Sub OnConnected( ByVal sender As Object, ByRef cancel As Boolean ) Console.Write("Connected") End Sub Sub SendMail() Try Dim oServer As SmtpServer = New SmtpServer("myserveraddress") ' SMTP user authentication oServer.User = "myusername" oServer.Password = "mypassword" ' Most mordern SMTP servers require SSL/TLS connection now. oServer.ConnectType = SmtpConnectType.ConnectSSLAuto Dim oMail As SmtpMail = New SmtpMail("TryIt") oMail.From = New MailAddress("from@adminsystem.com") oMail.To.Add(New MailAddress("to@adminsystem.com")) oMail.Subject = "test subject" oMail.TextBody = "test body" Dim oSmtp As SmtpClient = New SmtpClient AddHandler oSmtp.OnIdle, AddressOf OnIdle AddHandler oSmtp.OnAuthorized, AddressOf OnAuthorized AddHandler oSmtp.OnConnected, AddressOf OnConnected AddHandler oSmtp.OnQuit, AddressOf OnQuit AddHandler oSmtp.OnSecuring, AddressOf OnSecuring AddHandler oSmtp.OnSendingDataStream, AddressOf OnSendingDataStream oSmtp.SendMail(oServer, oMail) Console.WriteLine("Message was sent") Catch exp As SmtpTerminatedException Console.WriteLine(exp.Message) Catch exp As Exception Console.WriteLine("Exception: {0}", exp.Message) End Try End Sub Sub Main() SendMail() End Sub End Module
[C# - Send Email over SSL/TLS with Event Handler] using System; using EASendMail; namespace Test { class Class1 { public static void OnQuit( object sender, ref bool cancel ) { Console.WriteLine("Disconnecting ... "); } public static void OnSecuring( object sender, ref bool cancel ) { Console.WriteLine("Securing ... "); } public static void OnAuthorized( object sender, ref bool cancel ) { Console.WriteLine("Authorized"); } public static void OnIdle( object sender, ref bool cancel ) { // Application.DoEvents(); } public static void OnSendingDataStream( object sender, int sent, int total, ref bool cancel ) { Console.WriteLine(String.Format("{0}/{1} sent", sent, total)); } public static void OnConnected( object sender, ref bool cancel ) { Console.Write("Connected\r\n"); } static void SendMail() { try { SmtpServer oServer = new SmtpServer("myserveraddress"); // SMTP user authentication oServer.User = "myusername"; oServer.Password = "mypassword"; // Most mordern SMTP servers require SSL/TLS connection now. oServer.ConnectType = SmtpConnectType.ConnectSSLAuto; SmtpMail oMail = new SmtpMail("TryIt"); oMail.From = new MailAddress("from@adminsystem.com"); oMail.To.Add(new MailAddress("to@adminsystem.com")); oMail.Subject = "test subject"; oMail.TextBody = "test body"; SmtpClient oSmtp = new SmtpClient(); oSmtp.OnAuthorized += new SmtpClient.OnAuthorizedEventHandler(OnAuthorized); oSmtp.OnIdle += new SmtpClient.OnIdleEventHandler(OnIdle); oSmtp.OnConnected += new SmtpClient.OnConnectedEventHandler(OnConnected); oSmtp.OnSecuring += new SmtpClient.OnSecuringEventHandler(OnSecuring); oSmtp.OnSendingDataStream += new SmtpClient.OnSendingDataStreamEventHandler(OnSendingDataStream); oSmtp.OnQuit += new SmtpClient.OnQuitEventHandler(OnQuit); oSmtp.SendMail(oServer, oMail); Console.WriteLine("Message was sent"); } catch (SmtpTerminatedException exp) { Console.WriteLine(exp.Message); } catch (Exception exp) { Console.WriteLine("Exception: {0}", exp.Message); } } static void Main(string[] args) { SendMail(); } } }
[C++/CLI - Send Email with Event Handler] using namespace System; using namespace EASendMail; static void OnQuit( Object^ sender, Boolean % cancel ) { Console::WriteLine("Disconnecting ... "); } static void OnSecuring( Object^ sender, Boolean % cancel ) { Console::WriteLine("Securing ... "); } static void OnAuthorized( Object^ sender, Boolean % cancel ) { Console::WriteLine("Authorized"); } static void OnIdle( Object^ sender, Boolean % cancel ) { // Application::DoEvents(); } static void OnSendingDataStream( Object^ sender, int sent, int total, Boolean % cancel ) { Console::WriteLine("{0}/{1} sent", sent.ToString(), total.ToString()); } static void OnConnected( Object^ sender, Boolean % cancel ) { Console::Write("Connected\r\n"); } static void SendMail() { try { SmtpServer ^oServer = gcnew SmtpServer("myserveraddres"); // SMTP user authentication oServer->User = "myusername"; oServer->Password = "mypassword"; // Most mordern SMTP servers require SSL/TLS connection now. oServer->ConnectType = SmtpConnectType::ConnectSSLAuto; SmtpMail ^oMail = gcnew SmtpMail("TryIt"); oMail->From = gcnew MailAddress("from@adminsystem.com"); oMail->To->Add(gcnew MailAddress("to@adminsystem.com")); oMail->Subject = "test subject"; oMail->TextBody = "test body"; SmtpClient ^oSmtp = gcnew SmtpClient(); oSmtp->OnAuthorized += gcnew SmtpClient::OnAuthorizedEventHandler(&OnAuthorized); oSmtp->OnIdle += gcnew SmtpClient::OnIdleEventHandler(&OnIdle); oSmtp->OnConnected += gcnew SmtpClient::OnConnectedEventHandler(&OnConnected); oSmtp->OnSecuring += gcnew SmtpClient::OnSecuringEventHandler(&OnSecuring); oSmtp->OnSendingDataStream += gcnew SmtpClient::OnSendingDataStreamEventHandler(&OnSendingDataStream); oSmtp->OnQuit += gcnew SmtpClient::OnQuitEventHandler(&OnQuit); oSmtp->SendMail(oServer, oMail); Console::WriteLine("message was sent"); } catch (SmtpTerminatedException ^exp) { Console::WriteLine(exp->Message); } catch (Exception ^exp) { Console::WriteLine("Exception: {0}", exp->Message); } } int main(array<String ^> ^args) { SendMail(); return 0; }
See Also
User Authentication and SSL Connection
SmtpClient.SendMail Method
SmtpClient.BeginSendMail Method
Online Tutorials
Send Email with Event Handler in C# - Tutorial
Send Email with Event Handler in VB - Tutorial
Send Email with Event Handler in Managed C++/CLI - Tutorial