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.
I need more then to save it in the sent folder of Outlook. I need to be able to create a folder for it if one does not already exist, and then save the email to that folder.
The InfoStore Object is read only and does not allow you to create folders, something I will need to be able to do.
oSession = CreateObject("MAPI.Session")
oSession.logon()
oInfo=oSession.GetInfoStore()
oNewFolder=oInfo.RootFolder
oNewFolder.Folders.add('my new folder')