I mean, Creating a space between the email headers A simple newbie PHP question... Hi, I want to create a space between the email headers of my php form processor. What I did is this: $header = "From: $FirstName $LastName"; and this $header = "From: $FirstName $LastName"; but it doesn't work.. I don't know how? need help
If you are trying to send an email, then try this code $header = "From: \"$FirstName $LastName\" <$from_email>"; Code (markup):