在电子邮件中嵌入html表

时间:2018-01-05 12:51:02

标签: html email

我正在尝试将html表格嵌入到我发送的电子邮件中,我正在构建的应用程序是我正在尝试的

<table width="400" style="border:1px solid #333">
  <tr> 
     <th>Isolate Lots</th>
     <th>Identification</th>
  </tr>  
  #foreach( $sample in $SAMPLES)
  #if($EXPSAMPLES[$foreach.index].getData("jax_trait_isolateIdentification") !="Unidentified")  
  <tr>
  <td>$LOTS[$foreach.index].name </td>
  <td>$EXPSAMPLES[$foreach.index].getData("jax_trait_isolateIdentification") 
  </td>
  </tr>
  #end #end
 </table>

电子邮件中的表格如下所示 enter image description here

如何将Cell中的所有内容放入表中并对齐它们。

编辑后

enter image description here

3 个答案:

答案 0 :(得分:1)

尝试为每个单元格设置style="vertical-align: middle"(因为valign="middle"已过时)。

&#13;
&#13;
<table style="border-collapse: collapse; width: 400px">
  <tr>
    <th style="border: 1px solid  #333; vertical-align: middle">Isolate Lots</th>
    <th style="border: 1px solid  #333; vertical-align: middle">Identification</th>
  </tr>
  <tr>
    <td style="border: 1px solid  #333; vertical-align: middle">name</td>
    <td style="border: 1px solid  #333; vertical-align: middle">jax_trait_isolateIdentification</td>
  </tr>
</table>
&#13;
&#13;
&#13;

更新:添加边框

答案 1 :(得分:0)

你没有指明你的意思是什么样的对齐,所以这是我的建议,如果你想让它们居中,只需在单元格中添加'align =“center”'样式。

<table width="400" style="border:1px solid #333">
  <tr> 
     <th align="center">Isolate Lots</th>
     <th align="center">Identification</th>
  </tr>  
  #foreach( $sample in $SAMPLES)
  #if($EXPSAMPLES[$foreach.index].getData("jax_trait_isolateIdentification") !="Unidentified")
  <tr>
  <td align="center">$LOTS[$foreach.index].name</td>
  <td align="center">$EXPSAMPLES[$foreach.index].getData("jax_trait_isolateIdentification")
  </td>
  </tr>
#end #end
 </table>

答案 2 :(得分:0)

你的代码是正确的,也许你应该试试这个 我只是改变你的桌子的风格 希望它有效。在这里输入代码

<table width="400" border='1px' style='text-align:center'>
  <tr> 
     <th>Isolate Lots</th>
     <th>Identification</th>
  </tr>  
  #foreach( $sample in $SAMPLES)
  #if($EXPSAMPLES[$foreach.index].getData("jax_trait_isolateIdentification") !="Unidentified")  
  <tr>
  <td>$LOTS[$foreach.index].name </td>
  <td>$EXPSAMPLES[$foreach.index].getData("jax_trait_isolateIdentification") 
  </td>
  </tr>
  #end #end
 </table>
相关问题