14 lines
290 B
PHP
Executable File
14 lines
290 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($sender, $error_address, $email_subject_prefix);
|
|
$cron->run();
|
|
|
|
?>
|