| Home | All functions | Categories |
vuStartEmail(*CSTRING,*CSTRING,*CSTRING), Signed
Uses the MailTo protocol to start the default desktop email client with the specified recipient, subject, and body text. The user must manually send the email.
| Parameter | Data Type | Description |
|---|---|---|
| Address | CSTRING(128) | Email address of the recipient. |
| Subject | CSTRING(128) | Subject line for the email. |
| Message | CSTRING(256) | Body text for the email. |
A LONG value:
xAddr = 'broe@valutilities.com'
xSub = 'Order Status'
xMsg = 'Can you confirm my order status?'
IF vuStartEmail(xAddr, xSub, xMsg)
MESSAGE('Email client launched.')
ELSE
MESSAGE('Failed to start email client.')
END
Note: Opens the default desktop email client registered for the MailTo protocol.
MailTo.| Home | All functions | Categories |