mail.php 569 B

12345678910111213141516
  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. $headers .= 'From: Manche Numérique <ftth@manchenumerique.fr>' . "\r\n";
  10. $to = 'francoisbeaufils@gmail.com, timothy.thiebot@manche.fr';
  11. $resultat = mail($to, 'Test Email', 'This is an amazing content.', $headers);
  12. echo 'Email sent, result is : '.$resultat;
  13. ?>