RAD 4월 8일, 2022에 포스트됨 공유하기 4월 8일, 2022에 포스트됨 원문: https://blogs.embarcadero.com/everything-you-need-to-use-aws-ses-natively-in-your-apps/ 작성자: Richard Hatherall (2022.4) 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는 신뢰할 수 있고, 확장 가능한, 비용 효율적인 이메일 서비스이다. 마케팅 캠페인, 사용자 알림, 트랜잭션 이메일용으로 활용 가능하다. 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를 사용해 다음의 이메일 마케팅 캠페인을 시작해보는 건 어떨까? 또는 델파이로 구축한 비즈니스 애플리케이션에 이메일을 완벽 통합하는 것은? 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를 설치할 수 있다. 인용하기 이 댓글 링크 다른 사이트에 공유하기 더 많은 공유 선택 사항
Recommended Posts
이 토의에 참여하세요
지금 바로 의견을 남길 수 있습니다. 그리고 나서 가입해도 됩니다. 이미 회원이라면, 지금 로그인하고 본인 계정으로 의견을 남기세요.