Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Lianja) Send Email with hotmail.com, live.com, or outlook.comSee more SMTP ExamplesSend email using your Microsoft hotmail.com, live.com, or outlook.com account via the smtp.office365.com SMTP server. See the Guide for Creating an Application to Send Email from Hotmail.com, Live.com, or Outlook.com
// This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loMailman = createobject("CkMailMan") loMailman.SmtpHost = "smtp.office365.com" loMailman.SmtpPort = 587 loMailman.StartTLS = .T. // This could be your hotmail.com, live.com, or outlook.com account. loMailman.SmtpUsername = "yourName@live.com" // Load the previously saved OAuth2 access token. loJson = createobject("CkJsonObject") llSuccess = loJson.LoadFile("qa_data/tokens/hotmail.json") if (llSuccess = .F.) then ? loJson.LastErrorText release loMailman release loJson return endif loMailman.OAuth2AccessToken = loJson.StringOf("access_token") loEmail = createobject("CkEmail") // Note: If you send an email such as this, it can easily go to your Junk or Trash email folders. loEmail.Subject = "This is a test" loEmail.Body = "This is a test" // This could be your hotmail.com, live.com, or outlook.com account. loEmail.From = "My Hotmail Account <yourName@live.com>" llSuccess = loEmail.AddTo("Joe Example","joe@example.com") llSuccess = loMailman.OpenSmtpConnection() if (llSuccess <> .T.) then ? loMailman.LastErrorText ? "ConnectFailReason = " + str(loMailman.ConnectFailReason) release loMailman release loJson release loEmail return endif llSuccess = loMailman.SmtpAuthenticate() if (llSuccess <> .T.) then ? loMailman.LastErrorText release loMailman release loJson release loEmail return endif llSuccess = loMailman.SendEmail(loEmail) if (llSuccess <> .T.) then ? loMailman.LastErrorText release loMailman release loJson release loEmail return endif loMailman.CloseSmtpConnection() ? "Email Sent." release loMailman release loJson release loEmail |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.