C
cmichaud
I have a onclick event that will take values from my form then address
an email in outlook.
here is part of the code
Set MyMail = MyOutlook.CreateItem(olMailItem)
With MyMail
.To = MyAdd
.Subject = Subjectline
.Display 'use display and remove .Send if you want to
view the email before sending.
End With
I am looking to implant a text file as the body.
Do i just add
..body = location of file
?? I want to use the same file over again....just allow the user to
edit the file. thks
an email in outlook.
here is part of the code
Set MyMail = MyOutlook.CreateItem(olMailItem)
With MyMail
.To = MyAdd
.Subject = Subjectline
.Display 'use display and remove .Send if you want to
view the email before sending.
End With
I am looking to implant a text file as the body.
Do i just add
..body = location of file
?? I want to use the same file over again....just allow the user to
edit the file. thks