1. Go to this page and download the library: Download hxgf/x-utilities 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/ */
hxgf / x-utilities example snippets
use VPHP\x;
x::email_send([
'to' => '[email protected]',
'from' => '[email protected]',
'cc' => '[email protected]', // optional
'bcc' => '[email protected]', // optional
'reply-to' => '[email protected]', // optional
'subject' => 'Send me an email',
'html' => true, // optional, message will be sent as plain text unless this is true
'message' => 'Right now...<br /><br /><br /><b><u>RIGHT NOW</u></b>'
]);