Sorry I failed to get back to you.
To make the script HTML-capable, you only need to change the MIME type from text/plain to text/html. In contact.php, find the following line:
Code:
$msg .= "Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes\n";
Change it to:
Code:
$msg .= "Content-Type: text/html; charset=utf-8; format=flowed; delsp=yes\n";
That's all you need to do. You can input HTML into your form directly to test it. I added this functionality to the latest release, v.1.9.4. If you elect to upgrade to the latest version, you will find that it has more functionality than simply changing the MIME type. |