Sample code for 30+ languages & platforms
Unicode C++

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 Unicode C++ Downloads

Unicode C++
#include <CkMailManW.h>
#include <CkEmailW.h>

void ChilkatSample(void)
    {
    bool success = false;

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

    CkMailManW mailman;

    mailman.put_SmtpHost(L"smtp-mail.outlook.com");
    mailman.put_SmtpPort(587);
    mailman.put_StartTLS(true);

    // Set the SMTP login/password
    mailman.put_SmtpUsername(L"OFFICE365_USERNAME");
    mailman.put_SmtpPassword(L"OFFICE365_PASSWORD");

    // Create a new email object
    CkEmailW email;

    email.put_Subject(L"This is a test");
    email.put_Body(L"This is a test");
    email.put_From(L"My Name <my_office365_email@outlook.com>");
    success = email.AddTo(L"Chilkat Admin",L"admin@chilkatsoft.com");

    success = mailman.SendEmail(email);
    if (success != true) {
        wprintf(L"%s\n",mailman.lastErrorText());
        return;
    }

    wprintf(L"%s\n",mailman.smtpSessionLog());

    success = mailman.CloseSmtpConnection();
    if (success != true) {
        wprintf(L"Connection to SMTP server not closed cleanly.\n");
    }

    wprintf(L"Email Sent!\n");
    }