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