Ik ben op dit moment bezig om een nieuwsbrief module te schrijven voor mijn website, alles gaat goed. Op een ding na, in outlook 2007 worden de background images van de td tabellen niet ingeladen, heeft iemand een idee wat ik verkeerd doe?
PHP
<?php
/* recipients */
$to = "ontvanger";
/* subject */
$subject = "Koppeling herinnering!";
/* message */
$message = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Newsletter sitenaam.com</title>
</head>
<body>
<style type="text/css">
.border_left_top {
background-image: url("http://sitenaam.com/images/border_left_top.png");
}
</style>
<table border="0" width="100%" cellspacing="0" style="font-size: 11px; font-family: Arial;">
<tr bgcolor="#47aada" height="80px"><td colspan="3"><center><img src="http://sitenaam.com/images/logo.png" alt="sitenaam.com" /></center></td></tr>
<tr height="70px" background="http://sitenaam.com/images/header-background.png"><td colspan="3"><center style="font-size: 30px; color: #fff; font-weight:bold; font-family: Arial, Verdana;">Geen account gekoppeld!</center></td></tr>
<tr height="10px"><td colspan="3"></td></tr>
<tr><td class="border_left_top" background="http://sitenaam.com/images/border_left_top.png" height="15px" width="12px"></td><td background="http://sitenaam.com/images/border_mid_top.png"></td><td background="http://sitenaam.com/images/border_right_top.png" height="15px" width="15px"></td></tr>
<tr><td background="http://sitenaam.com/images/border_left_mid.png"></td><td>
Ons systeem heeft ontdekt dat je (nog) geen koppeling hebt gemaakt tussen sitenaam en jouw social media account, daarom willen we je via deze email daarvan op de hoogte brengen. Ook hebben we een stappenplan bijgevoegd hoe je dit het beste kan uitvoeren:<br />
- Login op <a href="#">sitenaam.com</a><br />
- Ga naar Account >> mijn media<br />
</td><td background="http://sitenaam.com/images/border_right_mid.png"></td></tr>
<tr><td background="http://sitenaam.com/images/border_left_bottom.png" height="14px" width="12px" ></td><td background="http://sitenaam.com/images/border_mid_bottom.png"></td><td background="http://sitenaam.com/images/border_right_bottom.png" height="14px" width="15px"></td></tr>
<tr><td colspan="3" style="text-align: center;">© 2013 <a href="http://sitenaam.com" target="_blank">sitenaam.com</a> | <a href="#">Afmelden nieuwsbrief</a> | <a href="#">Webversie</a></td></tr>
</table>
</body>
</html>';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'To: <'.$to.'>' . "\r\n";
$headers .= 'From: Sitenaam <[email protected]>' . "\r\n";
/* and now mail it */
mail($to, $subject, $message, $headers);
?>
Toon Meer