docs

Home All functions Legacy functions Categories

vuPOP3SetPassword()

vuPOP3SetPassword(*CSTRING InPassword),SIGNED,PROC,PASCAL,RAW,NAME('vuPOP3SetPassword')

Description

Sets the POP3 password used by vuMailKit POP3 receive operations.

Parameters

Parameter Data Type Description
InPassword *CSTRING The value to store.

Returns

Returns 0 (this function always returns 0).

Example

ROUTINE:Example   ROUTINE
  DATA
RC      LONG
Value   LONG

  CODE
  Value = 'example'
  RC = vuPOP3SetPassword(Value)
  STOP('RC=' & RC)
Home All functions Legacy functions Categories