When a user completes a form I want the form to be emailed to me in html format without using a third party program. I don't know any other way to do this than the code below so if anyone has a better solution please let me know. My problem is this. I want a blank text area to show up in the email so I can fill it in at a later date and print it out so that I can see every line. I cannot figure out how to specify that I want to see multiple lines for the box. When I try to put in something like <textarea cols=80> I get an error. Does anyone have a solution?
$message = "<html><body>";
$message .= "<h1> HelpDesk Trouble Ticket </h1>";
$message .= "<p>Priority: $priority\r\n</p>";
$message .= "<p>Phone: $phone\r\n</p>";
$message .= "<p>Needed By: $needed\r\n</p>";
$message .= "<p>Problem: $problem\r\n</p>";
$message .= "<hr>";
$message .= "<p><strong>The following information is to be completed ONLY by Computer Resources</strong></p>";
$message .= "<p>System Number:<input>Serial Number:<input>CR Technician:<input> </p>";
$message .= "<p>GW Technician:<input>Badge Number:<input>Order Number:<input>Service Request Number:<input> </p>";
$message .= "<p>Enter Resolution or Gateway Comments below:<textarea></p>";
$message .= "</body></html>";