Description: Optionally, specifies Text or HTML type format of email.
Syntax:
Tcl: MAIL type=number
JScript: MAIL("type=number");
VB Script: MAIL " type=number"
Argument: "type=",
0 = text (default)
1 = html
See Also: MAIL
Examples:
#TCL
MAIL {type=1}
// JScript
MAIL("type=1");
Rem VB Script
MAIL "type=1"
The MAIL type is optional and by default is text-type format for your email message. MAIL "type" is used to specify an HTML format to your email. If using HTML type, your script must contain all the html tags and formatting.