SetUserPassword

Sets the password used to log in to the Fax server.

Member of namespace

OpenTextFaxServer

Syntax

bool SetUserPassword (string UserPassword)

Parameters

UserPassword
Type: string

Parameters

UserPassword : The user ID password to connect to the fax server. Smart parameters are supported.

Returns

False if the action is not called at the batch level. Otherwise, True.

Level

Batch Level.

Details

Sets the user ID password to connect to the fax server.

Include this action before a ImportFaxes() or Connect() action.

It is recommended that you create an advanced value in the custom values tab in the Application Manager to encrypt your password instead of hard coding it in the action parameter. The password can be retrieved using smart parameters.

Example
SetServerName("myserver")
SetUserID("myuser")
SetUserPassword("mypassword")
SetProtocol(4)
Connect()
ImportFaxes()