亚马逊SES:交付与SentLast24Hours?

时间:2013-07-19 16:39:41

标签: amazon-web-services amazon-ses

我一直在使用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控制台中的投放报告确认:enter image description here

交付价值是否可通过API获得?为什么发送的值不准确?我知道更新需要一段时间,但我已经等了整整20分钟了?

提前致谢....

0 个答案:

没有答案