phpinfo.php 565 B

123456789101112131415161718192021222324
  1. <?php
  2. ini_set("SMTP", "mail.manchenumerique.fr");
  3. ini_set("sendmail_from", "ftth@manchenumerique.fr");
  4. ini_set('display_errors', 1);
  5. ini_set('display_startup_errors', 1);
  6. error_reporting(E_ALL);
  7. $headers = 'MIME-Version: 1.0' . "\r\n";
  8. $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
  9. $email = 'ftth@manchenumerique.fr';
  10. // En-têtes additionnels
  11. $headers .= 'From: Manche Numérique <'.$email.'>' . "\r\n";
  12. // Envoi
  13. $to='francoisbeaufils@gmail.com';
  14. $resultat = mail($to, 'sujet', 'body', $headers);
  15. echo 'resultat: '.$resultat;
  16. phpinfo();
  17. ?>