By Appercept 1 min read aws-sdk aws announcement delphi

Announcement: Appercept AWS SDK for Delphi 0.11.0 Released!

New AWS SDK for Delphi released with support for Amazon Simple Email Service.

Announcement: Appercept AWS SDK for Delphi 0.11.0 Released!

Email seems so old now when considering all the messaging options available. It is old, 50+ years old! It's been the lifeblood of many business processes and is still as important today as it ever was. With that in mind, the next release of Appercept AWS SDK for Delphi 0.11.0 includes support for Amazon Simple Email Service (SES).

Amazon SES is a reliable, scalable, and cost-effective email service and can be used for marketing campaigns, notifying users, or transactional emails.

Let's see how we can send a simple email…

program SendEmail;

{$APPTYPE CONSOLE}

implementation

uses
  AWS.SESV2;

var
  Client: ISESV2Client;
  Destination: ISESV2Destination;
  EmailMessage: ISESV2Message;
  Request: ISESV2SendEmailRequest;
  Response: ISESV2SendEmailResponse;

begin
  Destination := TSESV2Destination.Create;
  Destination.AddToAddress('world@example.com');

  EmailMessage := TSESV2Message.Create('Announcing...');
  EmailMessage.Body.Text := 'Hello, World!';

  Request := TSESV2SendEmailRequest.Create;
  Request.FromEmailAddress := 'sender@example.com';
  Request.Destination := Destination;
  Request.Content.Simple := EmailMessage;

  Client := TSESV2Client.Create;
  Client.SendEmail(Request);
end.

This is just the start. Why not start your next email marketing campaign with Amazon SES with tools written in Delphi? Or, seamlessly integrate email into your existing business applications built in Delphi?

Appercept AWS SDK for Delphi is available exclusively with active Enterprise or Architect subscriptions for Embarcadero Delphi or RAD Studio. You can install the SDK through the GetIt Package Manager within Delphi or RAD Studio if you have an active subscription.