12.4.16.22    GOTODAQ URL=mailto:emailaddress

Description:    Opens email program with address specified as Send To address.

Syntax:

Tcl:              GOTODAQ URL=mailto:emailaddress

JScript:         GOTODAQ("URL=mailto:emailaddress");

VB Script:      GOTODAQ "URL=mailto:emailaddress"

 

Arguments:     email address

See Also:       <GOTO>URL=mailto:yourname@yourcompany.com>, MAIL

 

This is supported by Browser based client, VIEW, and ViewDAQ.  It will open the default mail client. A default email client (like Outlook or Outlook Express) must be on the client and be  properly configured to a mail server, with account and password .  

Examples:     

# tcl

GOTODAQ URL=mailto:info@yourcompany.com

 

// JScript

GOTODAQ("URL=mailto:info@yourcompany.com");

 

Rem VB Script

GOTODAQ "URL=mailto:info@yourcompany.com"

 

Alternatives:

# tcl

set string1 "URL=mailto:info@yourcompany.com"

GOTODAQ $string1

 

// JScript

var string1 = "URL=mailto:info@yourcompany.com";

GOTODAQ(string1);

 

Rem VB Script

Dim string1

string1 = "URL=mailto:info@yourcompany.com"

GOTODAQ string1