Sample code for 30+ languages & platforms
Lianja

Send Email using smtp-mail.outlook.com with Password Authentication

See more SMTP Examples

Demonstrates how to send an email using smtp-mail.outlook.com using password authentication.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loMailman = createobject("CkMailMan")

loMailman.SmtpHost = "smtp-mail.outlook.com"
loMailman.SmtpPort = 587
loMailman.StartTLS = .T.

// Set the SMTP login/password
loMailman.SmtpUsername = "OFFICE365_USERNAME"
loMailman.SmtpPassword = "OFFICE365_PASSWORD"

// Create a new email object
loEmail = createobject("CkEmail")

loEmail.Subject = "This is a test"
loEmail.Body = "This is a test"
loEmail.From = "My Name <my_office365_email@outlook.com>"
llSuccess = loEmail.AddTo("Chilkat Admin","admin@chilkatsoft.com")

llSuccess = loMailman.SendEmail(loEmail)
if (llSuccess <> .T.) then
    ? loMailman.LastErrorText
    release loMailman
    release loEmail
    return
endif

? loMailman.SmtpSessionLog

llSuccess = loMailman.CloseSmtpConnection()
if (llSuccess <> .T.) then
    ? "Connection to SMTP server not closed cleanly."
endif

? "Email Sent!"


release loMailman
release loEmail