Respondiendo a lo que solicitas independiente de si con vistas a SEO no es recomendable, para depuración sí, y es algo muy simple, ¿quieres que tenga saltos de línea? colócalos:
en vez de
Código PHP:
Ver original$table .= "<tr><th><input type='checkbox'/></th><th>De</th><th>Asunto</th><th>Recibido</th></tr>";
así:
Código PHP:
Ver original$table .= "
<tr>
<th>
<input type='checkbox'/>
</th>
<th>
De
</th>
<th>
Asunto
</th>
<th>
Recibido
</th>
</tr>";