SAP-C02 第 140 题
题目
A software as a service (SaaS) based company provides a case management solution to customers A3 part of the solution. The company uses a standalone Simple Mail Transfer Protocol (SMTP) server to send email messages from an application. The application also stores an email template for acknowledgement email messages that populate customer data before the application sends the email message to the customer. The company plans to migrate this messaging functionality to the AWS Cloud and needs to minimize operational overhead. Which solution will meet these requirements MOST cost-effectively?
中文翻译:
一家基于软件即服务 (SaaS) 的公司向客户提供案例管理解决方案 A3 解决方案的一部分。该公司使用独立的简单邮件传输协议 (SMTP) 服务器从应用程序发送电子邮件。该应用程序还存储用于确认电子邮件消息的电子邮件模板,该模板在应用程序将电子邮件消息发送给客户之前填充客户数据。该公司计划将此消息传递功能迁移到 AWS 云,并需要最大限度地减少运营开销。哪种解决方案能够最具成本效益地满足这些要求?
选项
A. Set up an SMTP server on Amazon EC2 instances by using an AMI from the AWS Marketplace. Store the email template in an Amazon S3 bucket. Create an AWS Lambda function to retrieve the template from the S3 bucket and to merge the customer data from the application with the template. Use an SDK in the Lambda function to send the email message.
中文翻译:
使用 AWS Marketplace 中的 AMI 在 Amazon EC2 实例上设置 SMTP 服务器。将电子邮件模板存储在 Amazon S3 存储桶中。创建一个 AWS Lambda 函数以从 S3 存储桶检索模板,并将应用程序中的客户数据与模板合并。使用 Lambda 函数中的 SDK 发送电子邮件。
B. Set up Amazon Simple Email Service (Amazon SES) to send email messages. Store the email template in an Amazon S3 bucket. Create an AWS Lambda function to retrieve the template from the S3 bucket and to merge the customer data from the application with the template. Use an SDK in the Lambda function to send the email message.
中文翻译:
设置 Amazon Simple Email Service (Amazon SES) 以发送电子邮件。将电子邮件模板存储在 Amazon S3 存储桶中。创建一个 AWS Lambda 函数以从 S3 存储桶检索模板,并将应用程序中的客户数据与模板合并。使用 Lambda 函数中的 SDK 发送电子邮件。
C. Set up an SMTP server on Amazon EC2 instances by using an AMI from the AWS Marketplace. Store the email template in Amazon Simple Email Service (Amazon SES) with parameters for the customer data. Create an AWS Lambda function to call the SES template and to pass customer data to replace the parameters. Use the AWS Marketplace SMTP server to send the email message.
中文翻译:
使用 AWS Marketplace 中的 AMI 在 Amazon EC2 实例上设置 SMTP 服务器。将电子邮件模板与客户数据参数一起存储在 Amazon Simple Email Service (Amazon SES) 中。创建 AWS Lambda 函数来调用 SES 模板并传递客户数据以替换参数。使用 AWS Marketplace SMTP 服务器发送电子邮件。
D. Set up Amazon Simple Email Service (Amazon SES) to send email messages. Store the email template on Amazon SES with parameters for the customer data. Create an AWS Lambda function to call the SendTemplatedEmail API operation and to pass customer data to replace the parameters and the email destination.
中文翻译:
设置 Amazon Simple Email Service (Amazon SES) 以发送电子邮件。将电子邮件模板与客户数据参数一起存储在 Amazon SES 上。创建 AWS Lambda 函数来调用 SendTemplatedEmail API 操作并传递客户数据以替换参数和电子邮件目标。
答案
D
解析
正确答案:D 解析: 本题应选择 D。 正确选项: D. 设置 Amazon Simple Email Service (Amazon SES) 以发送电子邮件。将电子邮件模板与客户数据参数一起存储在 Amazon SES 上。创建 AWS Lambda 函数来调用 SendTemplatedEmail API 操作并传递客户数据以替换参数和电子邮件目标。 选择理由: 该选项最直接地满足题干中的关键约束。做 SAP-C02 题目时,需要...