Hello
Can anybody help with he following:
I have generated a piece of vbscript which successfully sends mail to one individual (of importance):
Where MailTo, MailSubject and Mailbody are populated with relevant detail
How do I expand this to send the message to multiple individuals
Thanks
Damian.
Can anybody help with he following:
I have generated a piece of vbscript which successfully sends mail to one individual (of importance):
Code:
Set objOutlk = createobject("Outlook.Application")
Set objMail = objOutlk.createitem(0)
objMail.To = MailTo
objMail.subject = MailSubject
objMail.body = MailBody
objMail.send
Where MailTo, MailSubject and Mailbody are populated with relevant detail
How do I expand this to send the message to multiple individuals
Thanks
Damian.