strange mail issue
Posted: Wed Oct 07, 2009 2:07 pm
I have the following:
When the email is received and viewed, we see this:
...quote_init.php?recordID#363
while the raw source of the email shows properly:
...quote_init.php?recordID=23363
I'm stumped. I've seen somewhere that # has a hex equivalent of 23, but
any help would be appreciated.
Code: Select all
$emailmessage = "
<html>
<head>
<title>Contact Page Request</title>
</head>
<body>";
if (isset($_POST['request1'])) {
$emailmessage .= "<p><font size='2' face='Arial, Helvetica, sans-serif'>Someone requested a quote for the following: </font></p>
<p><font size='2' face='Arial, Helvetica, sans-serif'>Request: $_POST[quote_client_comment]</p>
<p><font size='2' face='Arial, Helvetica, sans-serif'>You can generate the quote here:
<a href='http://****************************************.php?recordID=$quote_id'>CLICK HERE</a></p>
</body>
</html>
";
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
$headers .= 'Content-Transfer-Encoding: quoted-printable' . "\r\n";
...quote_init.php?recordID#363
while the raw source of the email shows properly:
...quote_init.php?recordID=23363
I'm stumped. I've seen somewhere that # has a hex equivalent of 23, but
any help would be appreciated.