Section [UserData]

This section contains a list of custom, user-defined variables that can be used in WBSP files, in form:
UserVariable=AnyValue
These variables can be read using functions $WBRV and $WBRRV.
The user-defined variables in UserData section can contain WhizBase tags and functions, same as any WBSP system variable (variables starting with WB_).

Here is an example of UserData section in default.inc file in virtual hosts document root:

[UserData]
AdminEmail=admin@somemailserver.com
MyMailServer=mail.somemailserver.com

Later these variables can be accessed from your WBSP files like this:

[FormFields]
wb_mailserver=$wbrv{MyMailServer}
wb_bcc=$wbrv{AdminEmail}

Or like this:

<html>
<body>
some html code ...

Please send your comments/questions to
<strong>$wbrv[AdminEmail]</strong><br>
Thank you!
</body>
</html>