I am sending bulk mails by using amazon SES. But I have certain issues and please clarify some doubts regarding SES
1)while I am sending bulk mails as groups (max send limit is 50 at a time) I am getting json response with single unique message-id for that 50 mails by using notification (SNS).How can I get 50 unique message id's for that 50 delivery mails.For further future reference I can check that unique id regarding that mail.
2)My second doubt is that while I am out of the sandbox I can send mails to recipients with out verifying "TO" email address.In that scenario if I add 50 mails to destination what if my 50th mail is not a valid mail or that mail doesn't exist.Does my 49 mails reach to the destinations or that full process stops. please clarify me on those things.Thanks in advance
Please check the sample json response:
{
"notificationType":"Delivery",
"mail":{
"timestamp":"2014-05-28T22:40:59.638Z",
"messageId":"0000014644fe5ef6-9a483358-9170-4cb4-a269-f5dcdf415321-000000",
"source":"[email protected]",
"sourceArn": "arn:aws:ses:us-west-2:888888888888:identity/example.com",
"sendingAccountId":"123456789012",
"destination":[
"[email protected]",
"[email protected]"
]
},
"delivery":{
"timestamp":"2014-05-28T22:41:01.184Z",
"recipients":["[email protected]"],
"processingTimeMillis":546,
"reportingMTA":"a8-70.smtp-out.amazonses.com",
"smtpResponse":"250 ok: Message 64111812 accepted"
}
}