boka3/cron.php
Erik Thuning ddaa1c6663 Broke the Cron class into its own include file, and made some addresses configurable.
Introduced a configuration variable to use for future implementation of discard notifications.
2019-10-24 09:57:47 +02:00

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();
?>