mirror of
https://github.com/ivuorinen/xkcd-Mailer.git
synced 2026-01-26 11:14:06 +00:00
16 lines
375 B
PHP
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>";
|
|
|