Files
FinalYearProject-MyMind/App Framework/ReferMe.php
Alexander Davis 32f42ec4db File Organisation
Includes addition of Individual Project Coursework Documents
2017-04-14 12:45:27 +01:00

13 lines
251 B
PHP

<?php
// the message
if($_SERVER["REQUEST_METHOD"] == "GET") {
$msg = = $_GET[data];
// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,70);
// send email
mail("contact@alexanderdavis.tech","New Form Submitted",$msg);
?>