Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3/4 Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(C#) Send email using smtp.gmail.com with SSL (port 465).Send email using smtp.gmail.com with SSL (port 465).
// The mailman object is used for sending and receiving email. Chilkat.MailMan mailman = new Chilkat.MailMan(); // Any string argument automatically begins the 30-day trial. bool success = mailman.UnlockComponent("30-day trial"); if (success != true) { Console.WriteLine(mailman.LastErrorText); return; } // Set the SMTP server. mailman.SmtpHost = "smtp.gmail.com"; mailman.SmtpUsername = "mySmtpLogin"; mailman.SmtpPassword = "myPassword"; mailman.SmtpSsl = true; mailman.SmtpPort = 465; // Create a new email object Chilkat.Email email = new Chilkat.Email(); email.Subject = "This is a test"; email.Body = "This is a test"; email.From = "Chilkat Support <chilkat.support@gmail.com>"; success = email.AddTo("Chilkat Admin","admin@chilkatsoft.com"); success = mailman.SendEmail(email); if (success != true) { Console.WriteLine(mailman.LastErrorText); return; } success = mailman.CloseSmtpConnection(); if (success != true) { Console.WriteLine("Connection to SMTP server not closed cleanly."); } Console.WriteLine("Mail Sent!"); |
© 2000-2016 Chilkat Software, Inc. All Rights Reserved.