
Answer-first summary for fast verification
Answer: Configure Amazon Simple Email Service (SES) for email transmission. Store the email template in SES with placeholders for customer data. Develop an AWS Lambda function to call the SendTemplatedEmail API, replace the placeholders with customer data, and specify the email recipient.
The correct answer is D. By using Amazon Simple Email Service (SES) to send email messages, the company can leverage a fully managed service that handles the complexities of sending and receiving emails, thereby minimizing operational overhead. Storing the email template in SES with parameters for the customer data allows for easy integration. Creating an AWS Lambda function to call the SendTemplatedEmail API operation and passing the necessary customer data and email destination ensures automation and efficiency. This solution is both cost-effective and reduces the need to manage infrastructure, unlike options that involve setting up an SMTP server on Amazon EC2.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
A SaaS company offers a case management solution that includes sending acknowledgment emails to customers. Currently, they use a standalone SMTP server to send these emails, which include templates populated with customer data. They plan to migrate this functionality to AWS to reduce operational overhead. What is the most cost-effective solution for this migration?
A
Deploy an SMTP server on Amazon EC2 using an AMI from the AWS Marketplace. Store the email template in an Amazon S3 bucket. Use an AWS Lambda function to fetch the template from S3, merge it with customer data, and send the email using an SDK.
B
Utilize Amazon Simple Email Service (SES) for sending emails. Store the email template in an Amazon S3 bucket. Employ an AWS Lambda function to retrieve the template from S3, integrate it with customer data, and dispatch the email via an SDK.
C
Establish an SMTP server on Amazon EC2 with an AMI from the AWS Marketplace. Store the email template in Amazon SES with placeholders for customer data. Implement an AWS Lambda function to invoke the SES template, substitute the placeholders with customer data, and transmit the email using the SMTP server.
D
Configure Amazon Simple Email Service (SES) for email transmission. Store the email template in SES with placeholders for customer data. Develop an AWS Lambda function to call the SendTemplatedEmail API, replace the placeholders with customer data, and specify the email recipient.