Sample code for 30+ languages & platforms
Pascal (Lazarus/Delphi)

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 Pascal (Lazarus/Delphi) Downloads

Pascal (Lazarus/Delphi)
program ChilkatDemo;

// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.

{$IFDEF FPC}
  {$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  SysUtils,
  CkDllLoader,
  Chilkat.MailMan,
  Chilkat.Email,
  Chilkat.JsonObject;

// ---------------------------------------------------------------------------

procedure RunDemo;
var
  success: Boolean;
  mailman: TMailMan;
  json: TJsonObject;
  email: TEmail;

begin
  success := False;

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

  mailman := TMailMan.Create;

  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.
  json := TJsonObject.Create;
  success := json.LoadFile('qa_data/tokens/hotmail.json');
  if (success = False) then
    begin
      WriteLn(json.LastErrorText);
      Exit;
    end;

  mailman.OAuth2AccessToken := json.StringOf('access_token');

  email := TEmail.Create;

  //  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','joe@example.com');

  success := mailman.OpenSmtpConnection();
  if (success <> True) then
    begin
      WriteLn(mailman.LastErrorText);
      WriteLn('ConnectFailReason = ' + mailman.ConnectFailReason);
      Exit;
    end;

  success := mailman.SmtpAuthenticate();
  if (success <> True) then
    begin
      WriteLn(mailman.LastErrorText);
      Exit;
    end;

  success := mailman.SendEmail(email);
  if (success <> True) then
    begin
      WriteLn(mailman.LastErrorText);
      Exit;
    end;

  mailman.CloseSmtpConnection();

  WriteLn('Email Sent.');


  mailman.Free;
  json.Free;
  email.Free;

end;

// ---------------------------------------------------------------------------

begin

  try
    RunDemo;
  except
    on E: Exception do
      WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
  end;

  WriteLn;
  {$IFDEF MSWINDOWS}
  WriteLn('Press Enter to exit...');
  ReadLn;
  {$ENDIF}
end.