mirror of
https://github.com/silicoflare/silicoflare-website.git
synced 2026-05-26 20:17:58 +05:30
Add files via upload
This commit is contained in:
10
htdocs/_temp/email.php
Normal file
10
htdocs/_temp/email.php
Normal 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);
|
||||
?>
|
||||
Reference in New Issue
Block a user