How do I use BCC to hide recipient addresses?
Created May 4, 2012
John Zukowski When you add a recipient InternetAddress, use Message.RecipientType.BCC:
String addressString = "bill@microsoft.com"; InternetAddress bcc = new InternetAddress(addressString); message.addRecipient( Message.RecipientType.BCC, bcc);