UAPI Functions - Email::fetch_charmaps

Description

This function lists the available character encodings.

Examples 


 cPanel or Webmail Session URL

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.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

The cPanel Interface

For  cPanel  &  WHM  version  58 Overview The cPanel interface is...

User Preferences

For cPanel & WHM version 58 Overview This document outlines how to access your cPanel...

Manage External Authentications

For cPanel & WHM version 58 Overview Manage credentials Additional documentation...

What is cPanelID?

In This Article:  Overview ServicesHow to get a cPanelID cPanelID External...

Guide to cPanel Interface Customization - cPanel Style Development

Introduction You can develop custom styles that modify the appearance of the cPanel interface....