Files
xkcd-Mailer/config.example.php
Ismo Vuorinen 59e6717fc2 1.0.0
2021-11-12 17:46:17 +02:00

28 lines
546 B
PHP

<?php
if (empty($here)) {
exit('No direct script access allowed');
}
/**
* xkcd-Mailer configuration example
* Save me as config.php
*/
// Your timezone, PHP5 required.
// See full list: http://www.php.net/manual/en/timezones.php
date_default_timezone_set("Europe/Helsinki");
// Your destination
$mail = "your@email.com";
$from = "xkcd mailer <xkcdmailer@example.com>";
// Send using mail (false just echoes the results)
$send = true;
// File to write ID of last post to
$lastfile = "last.txt";
// Debug mode active
$debug = false;