Creation repo sue RPi3

This commit is contained in:
Bruno 21
2019-02-04 10:14:50 +01:00
commit fb93c53f4f
31 changed files with 659 additions and 0 deletions

9
Send mail/mailtest.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
$to = "bruno@clicclac.info";
$subject = "PHP Test mail";
$message = "This is a test email";
$from = "bp6412615@gmail.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>