/** * Email writing assistant – Slimme tool * Onderwerp + context + toon → AI stelt e-mailtekst voor (Unified Agent) */ if (!ob_get_level()) ob_start(); require_once __DIR__ . '/inc/base.php'; session_name('CUSTOMER_PORTAL_SESSION'); ini_set('session.cookie_path', '/'); session_start(); if (!isset($_SESSION['customer_logged_in']) || $_SESSION['customer_logged_in'] !== true) { header('Location: ' . customer_portal_url('login.php') . '?redirect=' . urlencode(customer_portal_url('email-writing-assistant.php'))); exit; } $customer_id = (int)($_SESSION['customer_info']['id'] ?? 0); if ($customer_id <= 0) { header('Location: ' . customer_portal_url('login.php')); exit; } if (file_exists(__DIR__ . '/includes/module-visibility.php')) { require_once __DIR__ . '/includes/module-visibility.php'; $mods = function_exists('get_enabled_modules_for_customer') ? get_enabled_modules_for_customer($customer_id) : []; if (!in_array('email_assistant', $mods, true)) { header('Location: ' . customer_portal_url('slimme-tools-hub.php')); exit; } } $page_title = 'E-mail opstellen – Slimme tools'; include __DIR__ . '/layout-start.php'; ?>