This commit is contained in:
Christian Paminger
2006-11-27 08:47:48 +00:00
parent 0f0296a02a
commit bee9fab1cf
23 changed files with 2084 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
ini_set(sendmail_from, "pam@technikum-wien.at");
if (!mail($sendto,"Test","Dies ist ein Test","From: pam@technikum-wien.at\r\n"."Reply-To: webmaster@technikum-wien.at\r\n"))
die ("Mail konnte nicht verschickt werden!");
else
die ("Mail wurde an $sendto verschickt! [PHP]");
?>