index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form action="send.php" method="post"> <input type="text" name="name" placeholder="name"> <input type="text" name="number" placeholder="number"> <input type="submit" value="Send"> </form> </body> </html> send.php
<?php $email="xxxx@email.ua"; $name=$_POST['name']; $phone=$_POST['number']; mail($email, $name, $phone); ?> There is a simple form, and a simple dispatch code. Nothing comes to mail.