Swift
Swift
Send Email with hotmail.com, live.com, or outlook.com
See more SMTP Examples
Send 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
Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let mailman = CkoMailMan()!
mailman.smtpHost = "smtp.office365.com"
mailman.smtpPort = 587
mailman.startTLS = true
// This could be your hotmail.com, live.com, or outlook.com account.
mailman.smtpUsername = "yourName@live.com"
// Load the previously saved OAuth2 access token.
let json = CkoJsonObject()!
success = json.loadFile(path: "qa_data/tokens/hotmail.json")
if success == false {
print("\(json.lastErrorText!)")
return
}
mailman.oAuth2AccessToken = json.string(of: "access_token")
let email = CkoEmail()!
// 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.add(to: "Joe Example", emailAddress: "joe@example.com")
success = mailman.openSmtpConnection()
if success != true {
print("\(mailman.lastErrorText!)")
print("ConnectFailReason = \(mailman.connectFailReason.intValue)")
return
}
success = mailman.smtpAuthenticate()
if success != true {
print("\(mailman.lastErrorText!)")
return
}
success = mailman.sendEmail(email: email)
if success != true {
print("\(mailman.lastErrorText!)")
return
}
mailman.closeSmtpConnection()
print("Email Sent.")
}