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.
mail address string
Specifies the Internet mail address used in the header of outgoing mail. This command corresponds to the Email Address field in the User Info panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Email Address field in a string.
mail forwardaddress OFF | ON | string
Specifies the Internet mail address used to send mail. This entry is only used if outgoing mail must be sent through a different server than incoming incoming mail. This command corresponds to the Forward outgoing... field in the Mail Server panel of the Setup, Internet, Internet Mail dialog. fetch returns the OFF / ON setting in an integer or the server address in a string.
mail logonname string
Specifies the username to be used when connecting to the mail server. This command corresponds to the Logon Name field in the Mail Server panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Logon name field in a string.
mail options index | string
Specifies the active Mail Client options set, corresponding to the Current Mail Options in Setup, Internet, Internet Mail. Either the zero-based index or the name of an option set as it appears in the Current Mail Options list may be used. fetch returns the contents of the Current Mail Options field in a string.
mail password string
Specifies the password to be used when connecting to the mail server. This command corresponds to the Password field in the Mail Server panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Password field in a string.
mail replyaddress string
Specifies the Internet mail address on which you would like to receive replies. When the person you are sending mail to receives your message, this is the address they will see on the Reply to line of their mail reader. This command corresponds to the Reply Address field in the User Info panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Reply Address field in a string.
mail serveraddress string
Specifies the ip address of the mail server from which you receive mail. This command corresponds to the Incoming mail server address field in the User Info panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Incoming mail server address field in a string.
mail signaturefile filespec
Specifies a text file that contains text to be appended to the end of all mail messages you send. This command corresponds to the Signature file field in the User Info panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Signature file field in a string.
mail username string
Specifies the username to be used when sending Internet mail. This command corresponds to the Full name field in the User Info panel of the Setup, Internet, Internet Mail dialog. fetch returns the contents of the Full name field in a string.
connect telnet "entry name"
proc main
dial DATA "Symantec" ; Dial Symantec entry.
while $DIALING ; Loop while dialing.
endwhile
if $CARRIER ; See if we're connected.
transmit "Hello?" ; Send a string to say hello.
hangup ; Hang up the phone line.
else
errormsg "Sorry, not connected."
endif
endproc