Hi,
I have a macro for opening a .msg file but I need to also add email addresses. The email addresses will be different depending on the project.
Is this possible?
The macro I currently have is:
Sub OpenOutlookMsg ()
Dim myoutapp As Object
Dim myitem A Object
Set myoutapp = CreateObject("Outlook.Application")
Set myitem = myoutapp.CreateItemFromTemplate("C:\Users\aa\Desktop\Project.msg")
myitem.Display
End sub
I have a macro for opening a .msg file but I need to also add email addresses. The email addresses will be different depending on the project.
Is this possible?
The macro I currently have is:
Sub OpenOutlookMsg ()
Dim myoutapp As Object
Dim myitem A Object
Set myoutapp = CreateObject("Outlook.Application")
Set myitem = myoutapp.CreateItemFromTemplate("C:\Users\aa\Desktop\Project.msg")
myitem.Display
End sub