HTML
xxxxxxxxxx
1
<form class="contact-form" action="contactform.php" method="post">
2
<input type="text" name="name" placeholder="full name">
3
<input type="text" name="mail" placeholder="your email">
4
<input type="text" name="subject" placeholder="subject">
5
<textarea name="message" placeholder="message"></textarea>
6
<button type="submit" name="submit">SEND MAIL</button>
7
</form>
CSS
1
1
JS
xxxxxxxxxx
1
<?php
2
3
if (isset ($_POST_POST['submit'])) {
4
$name = $_POST ['name'];
5
$subject = $_POST['subject'];
6
$mailfrom = $_POST['mail'];
7
$message = $_POST['message'];
8
9
$mailTo = "mac@alohacircleislandtour.com";
10
$headers = "From: ".$mailFrom;
11
$txt = "You have received an e-mail from ".$name.".\n\n".$message;
12
13
mail($mailTo, $subject, $txt, $headers);
14
header("Location: index.php?mailsend");
15
}
Console errors: 0