<?php
// ============================================================
//  Mailchimp Transactional (Mandrill) — Demo Configuration
// ============================================================
//
//  1. Generate an API key at:  https://mandrillapp.com/settings
//     (see setup.php for step-by-step instructions)
//
//  2. Paste it below, replacing PASTE-YOUR-API-KEY-HERE.
//
//  3. Set DEFAULT_FROM_EMAIL to an address on a domain you've
//     verified in Mandrill → Settings → Sending Domains.
//     Unverified domains CAN'T send.
//
// ============================================================

define('MANDRILL_API_KEY', 'md-Tl_Oovb-tL1rh3jMHaFeMA');

// Base URL — do not change
define('MANDRILL_API_BASE', 'https://mandrillapp.com/api/1.0');

// Default sender identity for test emails.
define('DEFAULT_FROM_EMAIL', 'noreply@elegantwork.co.za');
define('DEFAULT_FROM_NAME',  'Elegant Work Group');

// OPTIONAL safety net: if you leave this demo on a public URL, you probably
// don't want strangers using it to send email from your verified domain.
// Populate this array with the only addresses allowed as recipients in the
// send forms. Leave empty to allow anything (fine for local / private dev).
//
//   define('ALLOWED_TEST_RECIPIENTS', ['you@elegantwork.co.za']);
//
define('ALLOWED_TEST_RECIPIENTS', []);
