mirror of
https://github.com/ivuorinen/xkcd-Mailer.git
synced 2026-02-03 02:47:32 +00:00
Configuration file example, reflecting README and .gitignore.
You can now configure xkcd-Mailer without touching the script itself. Yay!
This commit is contained in:
15
config.example.php
Normal file
15
config.example.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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>";
|
||||
|
||||
Reference in New Issue
Block a user