Description
This function lists the available character encodings.
Examples
cPanel or Webmail Session URL
https://hostname.example.com:2083/cpsess##########/execute/Email/fetch_charmaps
https://hostname.example.com:2083/cpsess##########/execute/Email/fetch_charmaps
LiveAPI PHP Class
$cpanel
=
new
CPANEL();
// Connect to cPanel - only do this once.
// Get a list of character encodings.
$encodings_list
=
$cpanel
->uapi(
'Email'
,
'fetch_charmaps'
);
LiveAPI Perl Module
my
$cpliveapi
= Cpanel::LiveAPI->new();
# Connect to cPanel - only do this once.
# Get a list of character encodings.
my
$encodings_list
=
$cpliveapi
->uapi(
'Email'
,
'fetch_charmaps'
,
);
cPanel Template Toolkit
<!-- Get a list of character encodings. -->
[% execute('Email', 'fetch_charmaps' ) %]
Command Line
uapi --user=username Email fetch_charmaps |
Notes:
- You must URI-encode values.
- username represents your account-level username.