Add files via upload

This commit is contained in:
SilicoFlare
2022-10-26 22:33:26 +05:30
committed by GitHub
parent 8b0ca401d9
commit 09849da8c5
61 changed files with 3978 additions and 0 deletions

10
htdocs/_temp/email.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
$to = 'silicoflare@gmail.com';
$subject = 'The subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>