|  | 
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
| (Classic ASP) 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 
 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% ' This example requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.MailMan") set mailman = Server.CreateObject("Chilkat.MailMan") mailman.SmtpHost = "smtp.office365.com" mailman.SmtpPort = 587 mailman.StartTLS = 1 ' This could be your hotmail.com, live.com, or outlook.com account. mailman.SmtpUsername = "yourName@live.com" ' Load the previously saved OAuth2 access token. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set json = Server.CreateObject("Chilkat.JsonObject") success = json.LoadFile("qa_data/tokens/hotmail.json") If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( json.LastErrorText) & "</pre>" Response.End End If mailman.OAuth2AccessToken = json.StringOf("access_token") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Email") set email = Server.CreateObject("Chilkat.Email") ' Note: If you send an email such as this, it can easily go to your Junk or Trash email folders. email.Subject = "This is a test" email.Body = "This is a test" ' This could be your hotmail.com, live.com, or outlook.com account. email.From = "My Hotmail Account <yourName@live.com>" success = email.AddTo("Joe Example","joe@example.com") success = mailman.OpenSmtpConnection() If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>" Response.Write "<pre>" & Server.HTMLEncode( "ConnectFailReason = " & mailman.ConnectFailReason) & "</pre>" Response.End End If success = mailman.SmtpAuthenticate() If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>" Response.End End If success = mailman.SendEmail(email) If (success <> 1) Then Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>" Response.End End If success = mailman.CloseSmtpConnection() Response.Write "<pre>" & Server.HTMLEncode( "Email Sent.") & "</pre>" %> </body> </html> | ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.