richardb007
Gebruiker
- Lid geworden
- 25 feb 2008
- Berichten
- 29
ten eerste @tha devil, thnx, je hebt me weer een stukje verder geholpen. Dan weet je het volgende ook vast, want ook hier kom ik niet uit.
<html>
<head>
<title>testmail</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php
// multiple recipients
$to = 'ikke@hotmail.com' . ', '; // note the comma
$to .= 'ikke@hotmail.com';
// subject
$subject = 'Bestelling via de website';
// message
$message = '
<html>
<head>
<title>bestelling via de website</title>
</head>
<body>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><strong>plu</strong></td>
<td><strong>boter</strong></td>
<td><strong>wit zacht</strong></td>
<td><strong>bruin zacht</strong></td>
</tr>
<tr>
<td>01</td>
<td>$optie001</td>
<td>$plu011</td>
<td>$plu012</td>
</tr>
<tr>
<td>02</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>03</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'From: ikke>' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
?>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
</body>
</html>
de rood geselecteerde teksten komen van het bestelformulier, maar werken dus niet, ze staan voor een waarde uit het voorgaande form dus. In een ander form, waar geen html instaat werkt het wel, maar nu niet, wat is de clou???
alvast bedankt helpmij'ers!!!!
<html>
<head>
<title>testmail</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php
// multiple recipients
$to = 'ikke@hotmail.com' . ', '; // note the comma
$to .= 'ikke@hotmail.com';
// subject
$subject = 'Bestelling via de website';
// message
$message = '
<html>
<head>
<title>bestelling via de website</title>
</head>
<body>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><strong>plu</strong></td>
<td><strong>boter</strong></td>
<td><strong>wit zacht</strong></td>
<td><strong>bruin zacht</strong></td>
</tr>
<tr>
<td>01</td>
<td>$optie001</td>
<td>$plu011</td>
<td>$plu012</td>
</tr>
<tr>
<td>02</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>03</td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
';
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'From: ikke>' . "\r\n";
// Mail it
mail($to, $subject, $message, $headers);
?>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
</body>
</html>
de rood geselecteerde teksten komen van het bestelformulier, maar werken dus niet, ze staan voor een waarde uit het voorgaande form dus. In een ander form, waar geen html instaat werkt het wel, maar nu niet, wat is de clou???
alvast bedankt helpmij'ers!!!!