D
djohnson
Hi,
Is it okay to do this, assuming the addresses are valid, in my send
routine? Or should there be some kind of loop to extract all
recipients from the Item and add them again individually?
Set olapp = CreateObject("Outlook.Application")
Set olmail = olapp.CreateItem(olMailItem)
With olMail
olmail.To = Item.To
olmail.CC = Item.CC
olmail.Subject = Item.Subject
olmail.body = Item.Body
olmail.Send
End With
I am doing this to avoid sending the whole form/code which would create
a message on the recipients' end about not being able to view in the
reading pane.
Thanks in advance
Is it okay to do this, assuming the addresses are valid, in my send
routine? Or should there be some kind of loop to extract all
recipients from the Item and add them again individually?
Set olapp = CreateObject("Outlook.Application")
Set olmail = olapp.CreateItem(olMailItem)
With olMail
olmail.To = Item.To
olmail.CC = Item.CC
olmail.Subject = Item.Subject
olmail.body = Item.Body
olmail.Send
End With
I am doing this to avoid sending the whole form/code which would create
a message on the recipients' end about not being able to view in the
reading pane.
Thanks in advance