19 lines
563 B
PHP
19 lines
563 B
PHP
<?php
|
|
if ( !isset($site) )
|
|
{
|
|
require_once( "config.inc.php" );
|
|
header( 'Location: ' . $accueil );;
|
|
}
|
|
$webmaster="contact@avion-poe.me";
|
|
$headers = "From: contact@avion-poe.me\r\n";
|
|
//$headers .= "MIME-Version: 1.0\r\n";
|
|
$headers .= "Content-type: text/plain; charset=UTF-8\r\n";
|
|
$headers .= "DATE: " . date( 'r' ) . "\r\n\r\n";
|
|
|
|
$html_headers = "From: contact@avion-poe.me\r\n";
|
|
//$headers .= "MIME-Version: 1.0\r\n";
|
|
$html_headers .= "Content-type: text/html; charset=UTF-8\r\n";
|
|
$html_headers .= "DATE: " . date( 'r' ) . "\r\n\r\n";
|
|
|
|
?>
|