我一直在使用API获取过去24小时内发送的电子邮件总数。
public static double AWS_Quota_SentLast24Hours()
{
using (var client = AWSClientFactory.CreateAmazonSimpleEmailServiceClient(AllSettings.Default.AWSAccessKey,AllSettings.Default.AWSSecretKey ))
{
var sendQuotaResults = client.GetSendQuota();
return sendQuotaResults.GetSendQuotaResult.SentLast24Hours;
}
}
其实我发了50封电子邮件。这可以通过Amazon SES控制台中的投放报告确认:
交付价值是否可通过API获得?为什么发送的值不准确?我知道更新需要一段时间,但我已经等了整整20分钟了?
提前致谢....