Jump to content
과거의 기술자료(읽기 전용): https://tech.devgear.co.kr ×
과거의 기술자료(읽기 전용): https://tech.devgear.co.kr

앱에서 AWS SES를 네이티브로 사용하기 위해 필요한 모든 것


Recommended Posts

 

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. AWS has a plethora of great services, but they can be a little challenging for Windows app development. With that in mind, the next release of Appercept AWS SDK for Delphi 11.0 includes support for Amazon Simple Email Service (SES).

사용 가능한 모든 메시지 옵션들을 살펴보면, 이메일은 이제 너무 오래된 것처럼 보인다. 실제로도 오래되었다. 50년 이상 되었으니! 이메일은 지금까지 다양한 비즈니스 절차에 있어 생명선이었고, 지금도 여전히 중요하다. AWS에는 수많은 훌륭한 서비스가 있지만, 윈도우 앱 개발에는 다소 어려움이 있는 부분이 있다. 이를 염두에 둔 델파이 11.0용 앱퍼셉트(Appercept) AWS SDK의 다음 버전에는 아마존 SES(Simple Email Service) 지원이 포함된다.

 

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

아마존 SES는 신뢰할 수 있고, 확장 가능한, 비용 효율적인 이메일 서비스이다. 마케팅 캠페인, 사용자 알림, 트랜잭션 이메일용으로 활용 가능하다.

spacer.png

 

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?

이건 시작에 불과하다. 델파이로 작성된 도구로 아마존 SES를 사용해 다음의 이메일 마케팅 캠페인을 시작해보는 건 어떨까? 또는 델파이로 구축한 비즈니스 애플리케이션에 이메일을 완벽 통합하는 것은?

spacer.png

 

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.

델파이용 앱퍼셉트(Appercept) AWS SDK는 엠바카데로 델파이, RAD스튜디오의 엔터프라이즈 또는 아키텍트 업데이트 서브스크립션 고객에게 제공된다. 서브스크립션을 유지 중이라면 델파이, RAD스튜디오의 겟잇 패키지 매니저를 통해 바로 해당 SDK를 설치할 수 있다.

이 댓글 링크
다른 사이트에 공유하기

이 토의에 참여하세요

지금 바로 의견을 남길 수 있습니다. 그리고 나서 가입해도 됩니다. 이미 회원이라면, 지금 로그인하고 본인 계정으로 의견을 남기세요.

Guest
이 토픽(기고/질문)에 답하기

×   서식있는 텍스트로 붙여넣기.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   이전에 작성한 콘텐츠가 복원되었습니다..   편집창 비우기

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

중요한 정보

이용약관 개인정보보호정책 이용규칙 이 사이트가 더 잘 작동하기 위해 방문자의 컴퓨터에 쿠키가 배치됩니다. 쿠키 설정 변경에서 원하는 설정을 할 수 있습니다. 변경하지 않으면 쿠키를 허용하는 것으로 이해합니다.