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