Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim em As MailItem
Dim fs As Object
Dim f As Object
Set fs = CreateObject("Scripting.FileSystemObject")
strPath = "C:\Users\" & Environ("UserName") & "\AppData\Roaming\Microsoft\Signatures\"
'This will be whatever the user has called the signature file, there will be three
strFileName = "user.htm" 'or .rtf, .txt
Set f = fs.OpenTextFile(strPath & strFileName, 1) '1=for reading
strSig = f.ReadAll
Set em = ap.CreateItem(olMailItem)
em.HTMLBody = "hi" & vbCrLf & strSig
em.Display