AWS SES SendRawEmailAsync not entertaining BCC
问题 I am sending the email using AWS SES Api, by converting the mail message into the stream, but i am not able to send the BCC. private async Task<bool> SendMessageUsingAWSProfileAsync(EmailMessage message, CancellationToken token) { MailMessage mailMessage = GetMailMessage(message); if (mailMessage == null) { _logger.DebugFormat("Unable to create MailMessage from message: {0}.", message); return false; } SendRawEmailResponse response; var credentials = new BasicAWSCredentials(_settings