我正在使用.net应用程序,在该应用程序中,我通过aws SES发送电子邮件,该电子邮件的工作方式很吸引人,但要求给我带来麻烦的客户端的要求是,他希望在网格中显示电子邮件日志及其 打开计数 在网格列内的任何列中 我搜索了很多但没有运气 我们是否有类似的方法可以在aws中分别返回每个电子邮件的 开放计数 ,如果可以,请让我知道该怎么做
我用于发送电子邮件的代码
public async Task<HttpStatusCode> SendSingleEmailAsync(string ToEmail, string Subject, string Content)
{
using (var ses = new AmazonSimpleEmailServiceClient(awsAccessKeyId, awsSecretAccessKey, region))
{
var sendResult = await ses.SendEmailAsync(new SendEmailRequest
{
Source = sender,
Destination = new Destination
{
ToAddresses =
new List<string> { ToEmail }
},
Message = new Message
{
Subject = new Content(Subject),
Body = new Body
{
Html = new Content(Content)
}
},
ConfigurationSetName = "Obtaincare-PartnerPortal"
});
return sendResult.HttpStatusCode;
}
}
让我知道这一感谢