You've already forked FinalYearProject-MyMind
mirror of
https://github.com/MrLyallCSIT/FinalYearProject-MyMind.git
synced 2026-01-18 07:09:41 +00:00
13 lines
251 B
PHP
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);
|
|
?>
|