9

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);
Anthony Neace
  • 25,013
  • 7
  • 114
  • 129
Puppala Mounika
  • 103
  • 1
  • 1
  • 4

1 Answers1

16

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: A@example.com
   Cc: B@example.com
   Bcc: C@example.com

The above message will be sent to all three of A@, B@, C@example.com. In contrast, if you send the following input:

   Destinations: A@example.com
   To: A@example.com
   Cc: B@example.com
   Bcc: C@example.com

That message will be delivered only to A@example.com.

Anthony Neace
  • 25,013
  • 7
  • 114
  • 129