瀏覽代碼

Remove test file

boutils 10 年之前
父節點
當前提交
2e975076b0
共有 1 個文件被更改,包括 0 次插入16 次删除
  1. 0 16
      mail.php

+ 0 - 16
mail.php

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