Daten per email versenden

fx3

Grünschnabel
Hallo Leute, ich steh wie 'n esel am berg. :confused:
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>
 
Ich kann die daten zwar fetchen und mit der whileschleife anzeigen. Aber wie krieg ich die extrahierten informationen aus der schleife in meinen HTML-Text der verschickt werden soll?:(
 
Hab die Lösung !! gibt zwar noch 'ne kleine Fehlermeldung, aber die schleife wird souverän im e-mail-text eingebunden
PHP:
$subTotal = 0;
for ($i = 0; $i < $numItem; $i++) {
	extract($cartContent[$i]);
	$order_cont .= "
	<tr>
		<td>{$cartContent[$i]['ct_qty']}</td>
		<td>{$cartContent[$i]['pd_id']} / {$cartContent[$i]['pd_name']}</td>
		<td align=\"right\">{$cartContent[$i]['pd_price']}</td>
		<td></td>
	</tr> ";}
 
Zurück