| Home | All functions | Legacy functions | Categories |
Prototype: vuSetMailServerOAuth(*CSTRING InServer, LONG InPort), SIGNED, PROC, PASCAL, RAW, NAME(‘vuSetMailServerOAuth’)
Stores OAuth-specific SMTP host/port settings in the active runtime configuration.
| Parameter | Type | Description | |—|—|—| | InServer | *CSTRING | OAuth SMTP server host name. | | InPort | LONG | OAuth SMTP server port. |
| Value | Meaning | |—|—| | 1 | Settings saved in runtime state. |
rc LONG
server CSTRING(256)
port LONG
server = 'smtp.office365.com'
port = 587
rc = vuSetMailServerOAuth(server, port)
MESSAGE('vuSetMailServerOAuth rc=' & rc)
| Home | All functions | Legacy functions | Categories |