Hi Experts,
I have an csv file which contains a field named “Primary Owner” and it contains email id’s of users. I would like to send email to those users in single email using powershell. How can i do that.
PrimaryOwner
Normally i will define the users in To section like below… but here, the ccsv file content will change in each time
$to = “abc@yammer.com”,"cdf@yammer.com"
Send-MailMessage -SmtpServer server1 -To $to -From $from -Subject $subject -Body $body -BodyAsHtml