PHP code example of roundcube / customizr

1. Go to this page and download the library: Download roundcube/customizr library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

roundcube / customizr example snippets


// define a custom watermark image (relative or absolute URL)
$config['custom_watermark_image'] = './skins/custom_watermark.png';

// define a custom URI to be displayed instead of the empty watermark page
$config['custom_watermark_uri'] = '';

// define a custom favicon image (emtpy string to remove it)
$config['custom_favicon'] = './skins/custom_favicon.ico';

// defines a custom CSS file which is added to every page
$config['custom_stylesheet'] = './skins/custom_stylez.css';