Outlook Items (31/08/2012)
I recently needed to load an eMail in Outlook with a particular set of users in the to field. I was going to do it with a “mailto:” link, but then discovered this neat bit of vbscript for automating sending eMails with Outlook.
FUNCTION SendEmail()
set objOutlk = createobject(“Outlook.Application”)
set objMail = objOutlk.createitem(0)
objMail.to = to
objMail.display
set objMail = nothing
set objOutlk = nothingEND FUNCTION