ok, so using the code i got from another post in this forum....
Dim EmailApp, NameSpace, EmailSend As Object
Set EmailApp = CreateObject("Outlook.Application")
Set NameSpace = EmailApp.getNameSpace("MAPI")
Set EmailSend = EmailApp.CreateItem(0)
EmailSend.to = "brandon.paquette@lnd.amedd.army.mil"
EmailSend.Subject = "MEMBER INPROCESSING"
EmailSend.Body = "The following member has inprocessed!" & " -- " & Me.txtName & Me.txtSSAN
EmailSend.Send
Set EmailApp = Nothing
Set NameSpace = Nothing
Set EmailSend = Nothing
well when i try to add additional recpients, i fail! apparently the .to function (or whatever vb calls it) limits you to 1 recipient. i'd use cc/bcc but i have 8 recpis and those also limit recipients to 1.
i can't find any documenting on the outlook.application object in the help files, so i'm at a loss, is there any other function that will let me use multiple recipients? i'd rather not set up a mailing list...
Dim EmailApp, NameSpace, EmailSend As Object
Set EmailApp = CreateObject("Outlook.Application")
Set NameSpace = EmailApp.getNameSpace("MAPI")
Set EmailSend = EmailApp.CreateItem(0)
EmailSend.to = "brandon.paquette@lnd.amedd.army.mil"
EmailSend.Subject = "MEMBER INPROCESSING"
EmailSend.Body = "The following member has inprocessed!" & " -- " & Me.txtName & Me.txtSSAN
EmailSend.Send
Set EmailApp = Nothing
Set NameSpace = Nothing
Set EmailSend = Nothing
well when i try to add additional recpients, i fail! apparently the .to function (or whatever vb calls it) limits you to 1 recipient. i'd use cc/bcc but i have 8 recpis and those also limit recipients to 1.
i can't find any documenting on the outlook.application object in the help files, so i'm at a loss, is there any other function that will let me use multiple recipients? i'd rather not set up a mailing list...