Files
FinalYearProject-MyMind/App Framework/ReferMe.php
Alexander Davis 41995c6e8c Final Upload
2017-05-16 20:46:48 +01:00

13 lines
251 B
PHP
Executable File

<?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);
?>