'; return mail(to(), $p . ' sent a message to FSF India', 'Per says:' . PHP_EOL . PHP_EOL . $m ); } function em_fw($t) { return preg_replace('/^(\w+)( .+)/', '$1$2', $t); } function post() { $n = $_POST['name']; $e = $_POST['email']; $m = $_POST['msg']; $errors = []; if (!email_valid($e)) { $errors[] = em_fw('Email is invalid'); } if (empty($m)) { $errors[] = em_fw('Message is required'); } $errors[] = 'This form is disabled for now'; $sok = true; if (empty($errors)) { $sok = send($n, $e, $m); } if (!$sok) { $errors[] = 'Unable to process your submission.'; } return [ 'ok' => empty($errors) && $sok, 'errors' => $errors ]; } $result = post(); include(__DIR__ . '/submit.html');