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
(Objective-C) 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
#import <CkoMailMan.h> #import <CkoJsonObject.h> #import <CkoEmail.h> // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkoMailMan *mailman = [[CkoMailMan alloc] init]; mailman.SmtpHost = @"smtp.office365.com"; mailman.SmtpPort = [NSNumber numberWithInt:587]; mailman.StartTLS = YES; // This could be your hotmail.com, live.com, or outlook.com account. mailman.SmtpUsername = @"yourName@live.com"; // Load the previously saved OAuth2 access token. CkoJsonObject *json = [[CkoJsonObject alloc] init]; BOOL success = [json LoadFile: @"qa_data/tokens/hotmail.json"]; if (success == NO) { NSLog(@"%@",json.LastErrorText); return; } mailman.OAuth2AccessToken = [json StringOf: @"access_token"]; CkoEmail *email = [[CkoEmail alloc] init]; // 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" emailAddress: @"joe@example.com"]; success = [mailman OpenSmtpConnection]; if (success != YES) { NSLog(@"%@",mailman.LastErrorText); NSLog(@"%@%d",@"ConnectFailReason = ",[mailman.ConnectFailReason intValue]); return; } success = [mailman SmtpAuthenticate]; if (success != YES) { NSLog(@"%@",mailman.LastErrorText); return; } success = [mailman SendEmail: email]; if (success != YES) { NSLog(@"%@",mailman.LastErrorText); return; } [mailman CloseSmtpConnection]; NSLog(@"%@",@"Email Sent."); |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.