I am new to PHP and setting an email form. I have this form working now with the exceptions. First I want a copy of the message email back to the sender. What is the PHP code for this? Second with the Phone Number field the senders phone number is just coming back blank.

This is my code:
Code:
<?php
if ($_POST['parse_var'] == "contactform") {
	
	$emailTitle = 'New email from your Website!';
	$yourEmail
...