Puppala Mounika
Puppala Mounika

Reputation: 123

How to add Cc and Bcc in Amazon SES SendRawEmail?

How to add the list of Cc and Bcc recipients in sendrawemail (java). I'm just adding all the recipients to one list and sending the mail. There is no separate method to set Cc and Bcc for SendRawEmailRequest.

Is there any way to set object of Destination type?

List<String> receipients = new ArrayList<String>();
receipients.addAll(mailToRecipients);
receipients.addAll(mailCcRecipients);
receipients.addAll(mailBccRecipients);

SendRawEmailRequest rawEmailRequest = new   SendRawEmailRequest(rawMessage).withDestinations(receipients);

Upvotes: 11

Views: 13965

Answers (1)

Anthony Neace
Anthony Neace

Reputation: 26021

Regarding SendRawEmail, you should be able to differentiate To, Cc, and Bcc destinations by setting them in your raw message headers. If you don't explicitly specify destinations in the request object, the headers will be checked instead. If you do, the headers won't be checked.

Here's a great example regarding this problem that JustinC@AWS shared on the AWS forums:

   Destinations: (empty)
   To: [email protected]
   Cc: [email protected]
   Bcc: [email protected]

The above message will be sent to all three of A@, B@, [email protected]. In contrast, if you send the following input:

   Destinations: [email protected]
   To: [email protected]
   Cc: [email protected]
   Bcc: [email protected]

That message will be delivered only to [email protected].

Upvotes: 18

Related Questions