Bullet points in email information received from an filled in website form

samanthamramos

New Member
I am building a website form page where a user enters in information which gets sent to my email once submitted. This appears to work ok, however, I want the information to be displayed in bullet points within the email once it has been sent.Below shows the bit of code that sends all the information in one big chunk, but how do I add bullet points from each title i.e. company name, email, phone number etc? or even a line space is fine...Code:\[code\]$to = '[email protected]';$subject = 'Quote';$message = 'FROM: '.$companyname. '-' .$fullname. 'Email: '.$email. ' Phone Number: '.$phonenumber;$headers = 'From: [email protected]' . "\r\n";\[/code\]Expected Outcome:Company Name:Full Name:Email:Phone Number:
 
Back
Top