Adding Plain Text Labels to PHP when submitted

Hi All,

Thanks for reading. I am using Senoculers PHP mail form.

Everything works. I just need to add labels to the form when it comes into the email.

So name would be

Name: Billy Bob
Address: 123 Any
City: Any City

Here is a snippet of the PHP…

$message = $_POST[“name”] . $_POST[“middle”] . $_POST[“last_name”] ."
“.$_POST[“street”] .”
". $_POST[“city”]

Thanks for your help

Justin