18 lines
537 B
PHP
18 lines
537 B
PHP
<?php
|
|
require_once 'mail/MailService.php';
|
|
|
|
$to = 'neel@neel.me.uk';
|
|
$subject = 'Test Email from ' . ($_SERVER['PROJECT_NAME'] ?? 'LPA Online');
|
|
$html = '<h1>Test</h1><p>This is a test email to verify mail functionality.</p>';
|
|
$text = 'Test: This is a test email to verify mail functionality.';
|
|
|
|
echo "Sending email to $to...\n";
|
|
$res = MailService::sendMail($to, $subject, $html, $text);
|
|
|
|
if ($res['success']) {
|
|
echo "SUCCESS: Email sent successfully.\n";
|
|
} else {
|
|
echo "ERROR: " . ($res['error'] ?? 'Unknown error') . "\n";
|
|
}
|
|
|