Summary
How it works
Date
COPY_ARRAY
IS_WEEKEND
Decimal
COPY_ARRAY
Development
LINK_OPEN
VALIDATE
VALIDATE_TRANSACTION
VIEW_SCREEN
Integer
COPY_ARRAY
File
CREATE_DIRECTORY
UNZIP
UPLOAD
LIST_FILES
LIST_DIRECTORIES
GET_HASH
GET_EXTENSION
GET_NAME
GET_COMPLETE_NAME
PATH_TO_VOLUME
DOWNLOAD
VOLUME_TO_PATH
ZIP
Image
GENERATE_CODE
IMAP
LIST_DIRECTORIES
JSON
COUNT
SET_VALUE
GET_KEYS
GET_TYPE
GET_POS_KEY
GET_ONE
GET_VALUE
DEL_KEY
TO_ARRAY
SMS
SEND
SMTP
SEND_EMAIL
Stock
GET_COST
GET_AVAILABLE_QTY
Text
RANDOM
COUNT_OCCURRENCES
COPY_ARRAY
SPLIT
IS_NUMERIC
HTML_DECODE
HTML_ENCODE
HTML_TO_TXT
LINK_DECODE
LINK_ENCODE
REPLACE
RTF_TO_TXT
User
CHECK_PASSWORD
Sale
GET_PRICE
CLOSE_ORDER
func X3.EN_IMAP_LIST_DIRECTORIES(Char FILTER_IN, Char LOGIN_IN, Char PASS_IN, Char IMAP_SERVER_IN, Integer IMAP_PORT_IN, Char IMAP_SECURITY_IN, Char() DIRECTORIES_OUT) : Integer
Allows you to retrieve the list of folders from an email box
- FILTER_IN Char Possible filter on the folders (Ex: "customer" > Returns only the folders containing "customer")
- LOGIN_IN Char Contains the login for the SMTP connection (and possibly IMAP)
- PASS_IN Char Contains the password for the SMTP connection (and IMAP if necessary)
- IMAP_SERVER_IN Char Contains the address of the IMAP server
- IMAP_PORT_IN Integer Contains the port number of the IMAP server (153, 993, ...)
- IMAP_SECURITY_IN Char Contains the IMAP server security ("SSL", "TLS", "")
- DIRECTORIES_OUT Char() Array containing the names of the directories
Example
Local Char DOSSIERS(255)(50)
Infbox num$(func X3.EN_IMAP_LIST_DIRECTORIES("",
& "lvexpertisex3",
& "ThisIsMichelMyPassword",
& "imap.lvexpertisex3.com",
& 993,
& "SSL",
& DOSSIERS))