我能够在浏览器上正确呈现带有表格的html代码,但是当在Outlook 2010上收到时,表格结构就会丢失。以下是我的代码。 是因为任何html标签,outlook无法呈现?请帮忙
<div style="color: black; font-family: Calibri;"> <img src="../images/Survey.png">
<br>
<br>
<p style="text-align: center; font-weight: bold;">Customer Establishment Feedback Survey</p>Hi [CONTACT_NAME],
<br>
<br>We would appreciate if you could complete the <b>Establishment Feedback Survey</b> below. This is in relation to your experience of your [PRODUCT] setup.
<br>
<br>
<table width="970" height="547" border="y">
<tbody>
<tr>
<td>
<p>Communication Provider Name</p>
</td>
<td width="409.5">
<p>[CONTACT_NAME]</p>
</td>
</tr>
<tr>
<td>
<p>CE Delivery Manager(s) engaged with</p>
</td>
<td>
<p>[USERNAME]</p>
</td>
</tr>
<tr>
<td>
<p>Date Survey Completed</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>Product(s) established for</p>
</td>
<td>
<p>[PRODUCT]</p>
</td>
</tr>
<tr>
<td>
<p>How would you rate your overall level of satisfaction with the end to end set up your new product ? </p>
<p>(on a scale of 1 to 10, with 1 being lowest and 10 being highest)</p>
<p> </p>
<p>Please add comments if applicable</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>What worked well with the set-up of your new product ?</p>
<p><b> </b>
</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>What did not work well with the set-up of your new product ?</p>
</td>
<td>
<p> </p>
</td>
</tr>
<tr>
<td>
<p>Please add any other comments about your set-up experience that you would like to bring to our attention</p>
</td>
<td>
<p> </p>
</td>
</tr>
</tbody>
</table>
<p> Thank You</p>
<br> Regards,
<br> [USERNAME]
答案 0 :(得分:2)
您需要将border="y"
更改为父border="1"
标记中的table
(或增加值以增加边框大小)