<?php 
 
require_once '../vendor/autoload.php'; 
 
use Ite\Logger\PhpMailLogger; 
 
// Change the email addres to yours: 
$logger = new PhpMailLogger('[email protected]'); 
 
// Log simple info message with fake content: 
$logger->info("Test info",['a' => 'test context', 'qwe' => 'alabala', 'q' => [1, 2, 4]]);
 
 |