mirror of
https://github.com/silicoflare/silicoflare-website.git
synced 2026-05-26 20:17:58 +05:30
10 lines
331 B
PHP
10 lines
331 B
PHP
<?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);
|
|
?>
|