fx3
Grünschnabel
Hallo Leute, ich steh wie 'n esel am berg.
Ich will die daten aus der tabelle per HTML-Email versenden und krieg die daten nicht "reingedruckt"
Ich will die daten aus der tabelle per HTML-Email versenden und krieg die daten nicht "reingedruckt"
Code:
<?
$sid = session_id();
$sql = "SELECT ct_id, ct.pd_id, ct_qty, pd_name, pd_price, pd_thumbnail, pd.cat_id
FROM tbl_cart ct, tbl_product pd, tbl_category cat
WHERE ct_session_id = '$sid' AND ct.pd_id = pd.pd_id AND cat.cat_id = pd.cat_id";
$result = mysql_query($sql);
while ($row = mysql_fetch_object($result));
$admin = "
$email = "";
$subject = "";
$mail = "";
$header = "MIME-Version: 1.0\n";
$header .= "Content-type: text/html; charset=iso-8859-1\n";
$header .= "From: ";
$message ="
<html>
<style type=\"text/css\">
.text {
color:#000000;
font-family:Verdena,Arial;
font-size:11px;
}
a {color:#ff0000;}
.h3 {font-size:13px; font-weight:bold;}
</style>
<body class=\"text\">
<p class=\"h3\"></p>
<p></p>
<table>
<tr>
<td class=\"h3\">Hallo $hidShippingFirstName</td>
</tr>
<tr>
<td colspan=\"2\" class=\"text\">Vielen Dank für Ihre Bestellung</td>
</tr>
<tr>
<td>$row</td>