Hi.
I am relatively new to using PHP and am working on building a contact form. It's pretty much good to go and it sends to my email, however, I am having the issue where it just sends this information to my email and not what the user put in, just leaving the message blank.
Name:
Email:
Phone:
Message:
I'm not exactly sure what I am doing incorrectly. Also is there way to improve my code to make sure it gets in my inbox and not my spam? I've included the PHP and the HTML regarding the form.
Here's the PHP.
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$phone