P
Perico
I have a visual basic form and want to open a mailitem file based on an Outlook "oft" template that will be sent. How do I open a mailItem that would be based on a template
This is the code I have so far and I'm not sure if I should use the createItem when a template is involved
Private Sub cmdSend_Click(
Dim myOLApp As Outlook.Applicatio
Set myOLApp = CreateObject("Outlook.Application"
Dim myItem As Outlook.MailIte
Set myItem = myOLApp.CreateItem(olMailItem
myItem.Display
This is the code I have so far and I'm not sure if I should use the createItem when a template is involved
Private Sub cmdSend_Click(
Dim myOLApp As Outlook.Applicatio
Set myOLApp = CreateObject("Outlook.Application"
Dim myItem As Outlook.MailIte
Set myItem = myOLApp.CreateItem(olMailItem
myItem.Display