File "mail01.php"

Full Path: /home/analogde/www/Bookmarks/CHESS_ON/mail01.php
File size: 341 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
     $to      = 'patrice.delpy@free.fr';
	 $to      = 'patrice.delpy@neuf.fr';
	 
     $subject = 'le sujet';
     $message = 'Bonjour !';
     $headers = 'From: webmaster@example.com' . "\r\n" .
     'Reply-To: webmaster@example.com' . "\r\n" .
     'X-Mailer: PHP/' . phpversion();

     mail($to, $subject, $message, $headers);
 ?>