Files
xkcd-Mailer/config.example.php
Ismo Vuorinen cb52b4e730 Configuration file example, reflecting README and .gitignore.
You can now configure xkcd-Mailer without touching the script itself. Yay!
2013-06-23 15:25:57 +03:00

16 lines
375 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>";