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.
With New GroupwareTypeLibrary.Application
With .Login
With .MailBox.Messages.Add(Class:="GW.MESSAGE.MAIL")
.Subject.PlainText = "Subject"
.Bodytext.PlainText = "This is a test"
.Recipients.Add array(recipient1, recipient2)
.Send
End With
End With
.Quit
End With