1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-24 10:36:50 +00:00
TiddlyWiki5/editions/tw2/source/tiddlywiki/test/reporter.php
2012-11-16 21:20:27 +00:00

17 lines
350 B
PHP
Executable File

<?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);
?>