Files
godot-question2answer/qa-include/qa-class.phpmailer.php
Emi 07ec659385 Importing project into Git
This project lived only on the server without version control. This is now the starting point for the repository.
2023-05-23 20:03:24 +02:00

16 lines
385 B
PHP

<?php
/**
* @deprecated This file is deprecated; please use Q2A built-in functions for sending emails.
*/
if (!defined('QA_VERSION')) {
header('Location: ../');
exit;
}
if (defined('QA_DEBUG_PERFORMANCE') && QA_DEBUG_PERFORMANCE) {
trigger_error('Included file ' . basename(__FILE__) . ' is deprecated');
}
require_once 'vendor/PHPMailer/PHPMailerAutoload.php';