8 lines
221 B
PHP
8 lines
221 B
PHP
|
<?php
|
||
|
$webmaster= "contact@lalis.fr";
|
||
|
$headers = "From: contact@lalis.fr\n";
|
||
|
$headers .= "MIME-Version: 1.0\n";
|
||
|
$headers .= "Content-type: text/plain; charset=UTF-8\n";
|
||
|
$headers .= "DATE: " . date( 'r' ) . "\n";
|
||
|
?>
|