|  | 
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
| (Unicode C) GMail SMTP port 587 with "less secure" Password AuthenticationSend email using GMail's SMTP server on port 587 (SSL via STARTTLS). 
 #include <C_CkMailManW.h> #include <C_CkEmailW.h> void ChilkatSample(void) { HCkMailManW mailman; BOOL success; HCkEmailW email; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. mailman = CkMailManW_Create(); // Use the GMail SMTP server // This example assumes your GMail account allows for "less secure apps" to use // SMTP username/password authentication. // For OAuth2 authentication, see GMail SMTP with OAuth2 Authentication CkMailManW_putSmtpHost(mailman,L"smtp.gmail.com"); CkMailManW_putSmtpPort(mailman,587); CkMailManW_putStartTLS(mailman,TRUE); // Set the SMTP login/password. CkMailManW_putSmtpUsername(mailman,L"chilkat.support"); CkMailManW_putSmtpPassword(mailman,L"myPassword"); // Create a new email object email = CkEmailW_Create(); CkEmailW_putSubject(email,L"This is a test"); CkEmailW_putBody(email,L"This is a test"); CkEmailW_putFrom(email,L"Chilkat Support <chilkat.support@gmail.com>"); CkEmailW_AddTo(email,L"Chilkat",L"support@chilkatsoft.com"); success = CkMailManW_SendEmail(mailman,email); if (success != TRUE) { wprintf(L"%s\n",CkMailManW_lastErrorText(mailman)); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); return; } wprintf(L"Email sent.\n"); CkMailManW_Dispose(mailman); CkEmailW_Dispose(email); } | ||||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.