Sample code for 30+ languages & platforms
Delphi DLL

Outlook Send Email using MIME Format

See more Outlook Examples

This example sends an email using MIME format via the Microsoft Graph Outlook REST API.

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, HttpResponse, Email, StringBuilder, JsonObject, Http, BinData;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
http: HCkHttp;
jsonToken: HCkJsonObject;
email: HCkEmail;
contentIdStarfish: PWideChar;
sbHtml: HCkStringBuilder;
numReplacements: Integer;
content: PWideChar;
bdMime: HCkBinData;
sbBase64: HCkStringBuilder;
resp: HCkHttpResponse;
json: HCkJsonObject;

begin
success := False;

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

http := CkHttp_Create();

// Use your previously obtained access token here:
// See the following examples for getting an access token:
//    Get Microsoft Graph OAuth2 Access Token (Azure AD v2.0 Endpoint).
//    Get Microsoft Graph OAuth2 Access Token (Azure AD Endpoint).
//    Refresh Access Token (Azure AD v2.0 Endpoint).
//    Refresh Access Token (Azure AD Endpoint).

jsonToken := CkJsonObject_Create();
success := CkJsonObject_LoadFile(jsonToken,'qa_data/tokens/microsoftGraph.json');
if (success = False) then
  begin
    Memo1.Lines.Add(CkJsonObject__lastErrorText(jsonToken));
    Exit;
  end;

CkHttp_putAuthToken(http,CkJsonObject__stringOf(jsonToken,'access_token'));

// To send email, we'll POST to the following endpoint:
// 
// POST /users/{id | userPrincipalName}/sendMail
// 
// (The special keyword "me" may be used in place of a principal name.)
// 

// The body of the POST request will contain the MIME source of the email in base64 format.

// Create a new email object
email := CkEmail_Create();
CkEmail_putSubject(email,'Test Outlook API to Send HTML Email with Attachments');
CkEmail_putFrom(email,'Mary <mary@somewhere.com>');
CkEmail_AddTo(email,'Joe','joe@example.com');

// Add a plain-text alternative body, which will likely never be seen.
// (It is shown if the receiving email client is incapable of displaying HTML email.)
CkEmail_AddPlainTextAlternativeBody(email,'This is a plain-text alternative body...');

// Our HTML will include an image, so add the related image here.
contentIdStarfish := CkEmail__addRelatedFile(email,'qa_data/jpg/starfish.jpg');
if (CkEmail_getLastMethodSuccess(email) = False) then
  begin
    Memo1.Lines.Add(CkEmail__lastErrorText(email));
    Exit;
  end;

// The src attribute for the image tag is set to the contentIdStarfish:
sbHtml := CkStringBuilder_Create();
CkStringBuilder_Append(sbHtml,'<html><body><p>This is an HTML email with an embedded image.</p>');
CkStringBuilder_Append(sbHtml,'<p><img src="cid:CONTENT_ID_STARFISH" /></p></body></html>');
numReplacements := CkStringBuilder_Replace(sbHtml,'CONTENT_ID_STARFISH',contentIdStarfish);

CkEmail_AddHtmlAlternativeBody(email,CkStringBuilder__getAsString(sbHtml));

// Finally, add some attachments to the email.
// Add a file attachment.
success := CkEmail_AddFileAttachment2(email,'qa_data/pdf/fishing.pdf','application/pdf');
if (success = False) then
  begin
    Memo1.Lines.Add(CkEmail__lastErrorText(email));
    Exit;
  end;

// Add an attachment where the content is contained in a string.
content := 'This is the content of the 2nd attached file.';
CkEmail_AddStringAttachment(email,'someText.txt',content);

// Get the email as multi-line base64..
bdMime := CkBinData_Create();
CkEmail_GetMimeBd(email,bdMime);

// Now get it as multi-line base64
sbBase64 := CkStringBuilder_Create();
CkBinData_GetEncodedSb(bdMime,'base64_mime',sbBase64);

// Send the HTTP POST (i.e. send the email)
resp := CkHttpResponse_Create();
success := CkHttp_HttpSb(http,'POST','https://graph.microsoft.com/v1.0/me/sendMail',sbBase64,'utf-8','text/plain',resp);
if (success = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

// The send succeeded if the response status code = 202.
// In the success case, there is no response body.  (We just get the response code to know that it succeeded.)
if (CkHttpResponse_getStatusCode(resp) <> 202) then
  begin
    json := CkJsonObject_Create();
    CkJsonObject_Load(json,CkHttpResponse__bodyStr(resp));
    CkJsonObject_putEmitCompact(json,False);
    Memo1.Lines.Add(CkJsonObject__emit(json));
    Memo1.Lines.Add('Failed, response status code = ' + IntToStr(CkHttpResponse_getStatusCode(resp)));
  end
else
  begin
    Memo1.Lines.Add('Outlook Mail Sent.');
  end;

CkHttp_Dispose(http);
CkJsonObject_Dispose(jsonToken);
CkEmail_Dispose(email);
CkStringBuilder_Dispose(sbHtml);
CkBinData_Dispose(bdMime);
CkStringBuilder_Dispose(sbBase64);
CkHttpResponse_Dispose(resp);
    CkJsonObject_Dispose(json);

end;