Amigo probe y si se puede con base64-encode lo que debes tener cuidado con las comillas dobles dentro de la variable
Código PHP:
Ver original<?
//MAL
$t="<table width="600" border="1" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
";
//BIEN
$t="<table width='600' border='1' cellspacing='0' cellpadding='0'>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
";
?>