I have found several topics about similar issue but I can not find any documentation for this and none of those correspond my issue directly.
$ol = New-Object -comObject Outlook.Application
$newmail = $ol.CreateItem(0)
$newmail.Recipients.Add($Manager.EmailAddress)
$newmail.Recipients.Add($User.EmailAddress)
The only thing I need is to make the 2nd receipient ($User.EmailAddress) in CC field instead "to" field in Outlook's draft. How can I accomplish it? Moreover is there any documentation about those functions?
Cheers!