Bionicman: PHP mail landet im Spamfilter wegen HTML-Code Änderung

Beitrag lesen

Hallo Forum,

Ich bin auf ein Problem gestoßen, das ich nicht nachvollziehen kann.

Folgendes:
Ich versende eine HTML-Seite per PHP mit mail. So weit so gut, geht auch. Wenn ich jetzt aber folgende vier Reihen aus dem Code lösche, landet die mail bei 1und1 immer im spam-Filter!?

Was hat denn nun mein "stinknormaler" HTML-Code, mit dem spamfilter bei 1und1 zu tun?

Und ja ich bin sicher, dass das die einzigen Änderungen sind, die ich vornehme.

So gehts, landet im Posteingang:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
<html>  
<head>  
<title>Newsletter Test</title>  
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
<style type="text/css">  
<!--  
  
.text_cl {  
	font-family: Arial, Helvetica, sans-serif;  
	font-size: 12px;  
	color: #838383;  
	line-height: 21px;  
	text-align: justify;  
}  
  
h1 {  
	color: #1d75a7;  
	font-weight: normal;  
	font-family: Arial, Verdana, Helvetica, sans-serif;  
	font-size: 15px;  
	letter-spacing: 1px;  
	padding: 0;  
	margin: 0;  
	font-weight:bold;  
	text-align:left;  
}  
  
-->  
</style>  
  
</head>  
  
<body style="margin: 0">  
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#ffffff">  
	<tr>  
		<td colspan="13" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="1" height="10"></td>  
	</tr>  
	<tr>  
		<td align="left" valign="top" colspan="13"><img alt="#" src="header.jpg" width="600" height="85"></td>  
	</tr>  
	<tr>  
		<td width="10"><img alt="#" src="spacer.gif" width="10" height="1"></td>  
		<td width="15" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="15" height="1"></td>  
		<td width="1" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="1" height="1"></td>  
		<td width="6" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="6" height="1"></td>  
		<td width="25" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="25" height="1"></td>  
		<td width="489" valign="top" bgcolor="#ffffff">  
			<table class="text_cl" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff">  
				<tr>  
					<td><img alt="#" src="spacer.gif" width="1" height="20"></td>  
				</tr>  
				<tr>  
				  <td><h1>Test</h1></td>  
				</tr>  
				<tr>  
					<td><img alt="#" src="spacer.gif" width="1" height="20"></td>  
				</tr>  
  
				<tr>  
					<td>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ut nisi vel mi cursus fringilla. Quisque pretium, tellus id suscipit varius, mauris metus lacinia tortor, quis tristique felis dui eu felis. Proin magna libero, ultricies eu, ultrices et, faucibus nec, nunc. Quisque vestibulum pulvinar elit. In hac habitasse platea dictumst.<br />  
					  <br>  
                      Nullam et ligula eu diam mattis luctus.  
					  </td>  
				</tr>  
                <tr>  
					<td><img alt="#" src="spacer.gif" width="1" height="20"></td>  
				</tr>  
				  
			</table>  
	  </td>  
			<td width="18" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="18" height="1"></td>  
			<td width="6" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="6" height="1"></td>  
			<td width="1" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="1" height="1"></td>  
			<td width="18" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="18" height="1"></td>  
			<td width="11"><img alt="#" src="spacer.gif" width="11" height="1"></td>  
		</tr>  
  
        <tr>  
        <td height="300"><img alt="#" src="spacer.gif"></td>  
        </tr>  
  
        <tr>  
		<td align="left" valign="top" colspan="13"><img alt="#" src="header.jpg" width="600" height="85"></td>  
	</tr>  
  
</table>  
<img alt="#" src="spacer.gif" width="1" height="1" />  
</body>  
</html>

Wenn ich diese Zeilen lösche, bleibt die mail im spamfilter hängen!?

Links

<td width="15" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="15" height="1"></td>  
<td width="1" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="1" height="1"></td>  
<td width="6" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="6" height="1"></td>  
<td width="25" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="25" height="1"></td>

und Rechts

<td width="18" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="18" height="1"></td>  
<td width="6" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="6" height="1"></td>  
<td width="1" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="1" height="1"></td>  
<td width="18" bgcolor="#ffffff"><img alt="#" src="spacer.gif" width="18" height="1"></td>

Vielleicht hat ja jemand eine Ahnung^^ Wäre über jeden Hinweis dankbar.

Gruß,
Olli