2013-08-11 01:55:07 +00:00
|
|
|
<?php
|
|
|
|
|
2013-09-13 22:39:03 +00:00
|
|
|
/**
|
|
|
|
* This small piece of php code calls the cron() function of the Mail_Handler.
|
|
|
|
* @author Daan Janssens, mentored by Matthew Lagoe
|
|
|
|
*/
|
|
|
|
|
2013-08-11 01:55:07 +00:00
|
|
|
require( '../libinclude.php' );
|
|
|
|
require( '../../www/config.php' );
|
|
|
|
|
|
|
|
$mail_handler = new Mail_Handler();
|
|
|
|
$mail_handler->cron();
|