-
1
- #1
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 iconf : set iconf = createobject("cdo.configuration")
dim Flds : Set Flds = iConf.Fields' get field object
dim Ws : Set Ws = CreateObject("Wscript.Shell")
dim compn : compn = Ws.ComputerName' place computer name in variable
With Flds'use field object
.Item'declare item #1("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/sendusin...;)[/URL] = 2
.Item#2("[URL unfurl="true"]http://schemas.microsoft.com/cdo/configuration/smtpserv...;)[/URL] = "smtp."& compn &".com" 'ToDo: Type a valid SMTP server ext ie .net .biz .us ....
.Update
End With