From a439bd43055392f139f7e67548f0e40009a2e28d Mon Sep 17 00:00:00 2001 From: Yvo Brevoort Date: Mon, 7 Jul 2025 16:42:32 +0200 Subject: [PATCH] add mailstyles to example --- config.php.example | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/config.php.example b/config.php.example index d9e364f..f439916 100644 --- a/config.php.example +++ b/config.php.example @@ -16,7 +16,27 @@ ]; const MAILSTYLES = [ + 'container' => [ + 'backgroundColor' => '#eeeeee' + ], + 'header' => [ + 'backgroundColor' => '#3b3b3b' + ], + 'call-to-action' => [ + 'backgroundColor' => '#ffffff', + 'color' => '#181818', + 'colorMuted' => '#333333', + 'fontFamily' => 'Arial, Helvetica, sans-serif', + 'buttonTextColor' => '#ffffff', + 'buttonBackgroundColor' => '#3c6a87' + ], + 'footer' => [ + 'backgroundColor' => '#3b3b3b', + 'color' => '#e8ecf0', + 'fontFamily' => 'Arial, Helvetica, sans-serif', + ] ]; + const STORAGEBASE = __DIR__ . "/pods/"; const PUBSUB_SERVER = "wss://pubsub:8080";