Files
grav-plugin-listmonk/vendor/adnanhussainturki/listmonk-php/test/init.php
2025-07-12 16:45:24 +02:00

20 lines
464 B
PHP

<?php
require __DIR__ . '/../vendor/autoload.php';
// Read files from .credentials
try {
$credentials = json_decode(file_get_contents(__DIR__ . '/.credentials'), true);
} catch (\Throwable $th) {
echo "Error reading credentials file: " . $th->getMessage();
exit;
}
// Create a new ListMonk instance
$listMonk = new \AdnanHussainTurki\ListMonk\ListMonk(
$credentials['serverUrl'],
$credentials['username'],
$credentials['password']
);
?>