Open Outlook send mail window with attachments
Open Outlook send mail window with attachments from a vb application. Also, change m.display to m.send if you want to just send the email and not preview it! Also works in vbscript! Copy code to a text file and save with a *.vbs extension and double click to activate. Super Cool.
Rate Open Outlook send mail window with attachments
(23(23 Vote))
Dim o
Dim m
Set o = CreateObject("Outlook.Application")
Set m = o.CreateItem(0)
m.To = "[email protected]"
m.Subject = "This is the Subject"
m.Body = "Hey, this is cool!"
m.Attachments.Add "C:\Temp\FileToAttach.txt"
'Repeat this line if there are more Attachments
m.Display
'm.Send 'If you want to just send it
Open Outlook send mail window with attachments Comments
No comments yet — be the first to post one!
Post a Comment