-3

アマゾンSESウェブサービスを使用して大量のメールを送信しようとしています。ただし、.NETではそのような参照を取得していません。誰か助けてもらえますか?

4

2 に答える 2

0
SendEmailRequest ser = new SendEmailRequest("VERIFIED_EMAIL_HERE", dest, message);
SendEmailResponse seResponse = amzClient.SendEmail(ser);
SendEmailResult seResult = seResponse.SendEmailResult;

(SO のスペース以外の最小要件を超えるために含まれるテキスト)

于 2012-10-09T13:03:38.617 に答える
0
AmazonSimpleEmailServiceConfig amConfig = new AmazonSimpleEmailServiceConfig();
amConfig.UseSecureStringForAwsSecretKey = false;
AmazonSimpleEmailServiceClient amzClient = new    
    AmazonSimpleEmailServiceClient(ConfigurationManager.AppSettings["AKID"].ToString(),     
    ConfigurationManager.AppSettings["Secret"].ToString(), amConfig);
于 2012-10-09T13:00:24.220 に答える