This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hey all at the moment I have a line like this in my script
myHtmlMessage = New MailMessage("info@ew.ie", Row.email, "weqweq", emailText)
But how can i add some bcc emails ?
Cheers
After that line, use:
MailAddress bcc = new MailAddress("manager1@contoso.com"); message.Bcc.Add(bcc);
AFAIK its not possible. You could send 2 separate mails using 2 send mail task in case you wish to send the mail to one person, or put the mail task in a foreach loop where the emails ids could be fetched from a staging table.