Files
FinalYearProject-MyMind/ReferMe.php
Alexander Davis 0018e82ee5 App Completed
Basic Prototype App Completed. Proposal, Literature Review and Final
Report to Follow.
2017-04-13 18:18:38 +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);
?>