mirror of
https://github.com/ivuorinen/xkcd-Mailer.git
synced 2026-01-26 03:04:01 +00:00
28 lines
546 B
PHP
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;
|