Jump to content

Mail function issues


iggy407

Recommended Posts

I am new to php and I have a form on my website, the form works correctly the only issue is with the variable $message it gives me all the information from the form as one long sentence and I want to break up each question as a new line, but can't seem to solve this any idea's...

 


$firstname= $_POST['firstname'];
$lastname= $_POST['lastname'];
$email= $_POST['email'];
$from=$_POST["confirmemail"];
$phonenumber= $_POST["phonenumber"];
$message="First Name: $firstname".
"Last Name: $lastname".
"Email: $email".
"Phone number: $phonenumber";
mail("[email protected]","Tenant-Buyer Form",$message,"From: $from \n");
echo "Message Sent";

Link to comment
https://forums.phpfreaks.com/topic/251699-mail-function-issues/
Share on other sites

Just need to add a linefeed after each section. Well, theoretically anyhow. See if this works.

 

$message="First Name: $firstname\n".
"Last Name: $lastname\n".
"Email: $email\n".
"Phone number: $phonenumber\n";

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.