|
Hi
Have the code below which is mainly working but, how do you send the e-mail to a "group" in my contact list?
e..g if the Group is called Work 1
Set oApp = CreateObject("Outlook.Application") Set oMail = oApp.CreateItem(0) With oMail .To = "Work 1" ** .Subject = "File" .Body = "Here is the file you asked for" .Attachments.Add WB.FullName .Display
End With
|