ddaa1c6663
Introduced a configuration variable to use for future implementation of discard notifications.
14 lines
276 B
PHP
Executable File
14 lines
276 B
PHP
Executable File
<?php
|
|
spl_autoload_register(function ($class) {
|
|
include('./include/'.$class.'.php');
|
|
});
|
|
require('./config.php');
|
|
require('./include/functions.php');
|
|
|
|
header('Content-Type: text/html; charset=UTF-8');
|
|
|
|
$cron = new Cron($reminder_sender, $error_address);
|
|
$cron->run();
|
|
|
|
?>
|