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.
WScript.Sleep 300000
Set objMessage = CreateObject("CDO.Message")
objMessage.Sender = "SomeValidLocalEmailAddress@yourdomain.com"
objMessage.To = "destinationAddress@anyDomain.com"
objMessage.TextBody = "Whatever you want to say in body.."
objMessage.Subject = "Whatever you wanna say in subject..."
'This section provides the configuration information for the remote SMTP server.
objMessage.Configuration.Fields.Item _
("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/sendusing")[/URL] = 2
'Name/IP of SMTP Server
objMessage.Configuration.Fields.Item _
("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserver")[/URL] = "yourSMTPServer.yourdomain.com"
'Server port
objMessage.Configuration.Fields.Item _
("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserverport")[/URL] = 25
objMessage.Configuration.Fields.Update
objMessage.Send