I've made a web site (for a client) that has a contact form. The form works fine, but the email that arrives shows a long weird address, which I assume is the hosting server name:
[email protected]. These emails look scary to my website client, and she's afraid to open them. Is there some code I can add to the php file that will change who the email appears to be from in my client's inbox? This is part of what's in the php file:
$EmailFrom = "Visitor";
$EmailTo = "
[email protected]";
$Subject = "Message from BusinessName website";
$Name = Trim(stripslashes($_POST['Name']));
$Email = Trim(stripslashes($_POST['Email']));
$Message = Trim(stripslashes($_POST['Message']));
Disclaimer . . . I know nothing about writing PHP.
TIA - gardencat