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
(Android™) 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
// Important: Don't forget to include the call to System.loadLibrary // as shown at the bottom of this code sample. package com.test; import android.app.Activity; import com.chilkatsoft.*; import android.widget.TextView; import android.os.Bundle; public class SimpleActivity extends Activity { private static final String TAG = "Chilkat"; // Called when the activity is first created. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkMailMan mailman = new CkMailMan(); mailman.put_SmtpHost("smtp.office365.com"); mailman.put_SmtpPort(587); mailman.put_StartTLS(true); // This could be your hotmail.com, live.com, or outlook.com account. mailman.put_SmtpUsername("yourName@live.com"); // Load the previously saved OAuth2 access token. CkJsonObject json = new CkJsonObject(); boolean success = json.LoadFile("qa_data/tokens/hotmail.json"); if (success == false) { Log.i(TAG, json.lastErrorText()); return; } mailman.put_OAuth2AccessToken(json.stringOf("access_token")); CkEmail email = new CkEmail(); // Note: If you send an email such as this, it can easily go to your Junk or Trash email folders. email.put_Subject("This is a test"); email.put_Body("This is a test"); // This could be your hotmail.com, live.com, or outlook.com account. email.put_From("My Hotmail Account <yourName@live.com>"); success = email.AddTo("Joe Example","joe@example.com"); success = mailman.OpenSmtpConnection(); if (success != true) { Log.i(TAG, mailman.lastErrorText()); Log.i(TAG, "ConnectFailReason = " + String.valueOf(mailman.get_ConnectFailReason())); return; } success = mailman.SmtpAuthenticate(); if (success != true) { Log.i(TAG, mailman.lastErrorText()); return; } success = mailman.SendEmail(email); if (success != true) { Log.i(TAG, mailman.lastErrorText()); return; } mailman.CloseSmtpConnection(); Log.i(TAG, "Email Sent."); } static { System.loadLibrary("chilkat"); // Note: If the incorrect library name is passed to System.loadLibrary, // then you will see the following error message at application startup: //"The application <your-application-name> has stopped unexpectedly. Please try again." } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.