Open mike-mathers opened 9 years ago
Diff
492a493
> List<String> destinations = Lists.<String>newArrayList(toEmail);
494a496
> destinations.add(bccEmail);
510c512
< rawEmailRequest.setDestinations(Lists.<String>newArrayList(toEmail));
---
> rawEmailRequest.setDestinations(destinations);
com.netflix.ice.basic.BasicWeeklyCostEmailService.sendEmail()
rawEmailRequest.setDestinations must also include the BCC to actually send. The previous,
isn't sufficient to have it sent to the BCC.
Per AWS JavaDoc