mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-28 18:05:00 +00:00
Move the editions into a subfolder
This commit is contained in:
16
editions/tw2/source/tiddlywiki/test/reporter.php
Executable file
16
editions/tw2/source/tiddlywiki/test/reporter.php
Executable file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
$smtp = "smtp.gmail.com";
|
||||
$sender = "info@tiddlywiki.com";
|
||||
$recipient = "info@tiddlywiki.com";
|
||||
$subject = "Test Report";
|
||||
|
||||
ini_set("SMTP", $smtp);
|
||||
ini_set("smtp_port", "465");
|
||||
ini_set("sendmail_from", $sender);
|
||||
|
||||
echo $message = "Total : " . $_POST["total"] . " Failures : " . $_POST["failures"];
|
||||
|
||||
echo mail($recipient, $subject, $message);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user