shavenlunatic
MIS
I'm trying to send a bunch of reports from within Outlook 2003. Now, ive managed to generate the email, attach the files and send them to specified emil addresses. So my question is all depending on what can be done:
If I can set to email to a distribution list, how do I do this?
If i can't mail to a DL, how would I just manually (uhrg) add each email address to the "To" box?
incidentally, heres the code as it stands:
thanks in advance
If I can set to email to a distribution list, how do I do this?
If i can't mail to a DL, how would I just manually (uhrg) add each email address to the "To" box?
incidentally, heres the code as it stands:
Code:
Set App = CreateObject("Outlook.Application")
Set Itm = App.CreateItem(0)
With Itm
.Subject = "Agent Idle Report " & holddates1
.To = "barry.mcclelland@nottellingyou.com"
.Body = "Good Morning"
.Attachments.Add idlelocation1
.Send
End With
Set App = Nothing
Set Itm = Nothing
thanks in advance