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.
'// Send an Email using the default email address.
MAPISession1.SignOn
MAPIMessages1.SessionID = Me.MAPISession1.SessionID
MAPIMessages1.Compose
MAPIMessages1.MsgSubject = "Registration - " & App.ProductName
MAPIMessages1.MsgNoteText = Create_EmailBody
MAPIMessages1.RecipAddress = "someone@somesite.com"
MAPIMessages1.ResolveName
MAPIMessages1.AttachmentIndex = 0
MAPIMessages1.AttachmentPosition = 0
MAPIMessages1.AttachmentPathName = App.Path & "\Register.txt"
MAPIMessages1.AttachmentName = Trim(txtCompany.Text) & ".txt"
MAPIMessages1.Send
MAPISession1.SignOff