Hi there,
I've a simple email script as follows:
I would like to include a link to a file on the computer like (D:\users\users\David Nolan.xlsm) in that email. How do I do it?
THanks..
I've a simple email script as follows:
Code:
Sub Mail()
Dim outlookApp As Outlook.Application
Set outlookApp = CreateObject("Outlook.Application")
Dim outlookMail As Outlook.MailItem
Set outlookMail = outlookApp.CreateItem(outlookMailItem)
With outlookMail
.To = "john.doe@gmail.com"
.Subject = "Hello"
.Body = "This is a link of the file."
.Send
End Sub
I would like to include a link to a file on the computer like (D:\users\users\David Nolan.xlsm) in that email. How do I do it?
THanks..
Last edited: