您好,基本上我有一个发票电子邮件,每天晚上发送出去,其中包含当今订单的订单信息。我正在尝试使用php和mysql数据自动化此电子邮件,但我不太确定该怎么做。仅供参考,我是html的新手。我习惯于bash和或python。
下面是电子邮件html文件的示例,我正尝试在其中放置订单信息
<!-- INSERT HERE Product quantity for Kit 1 Blue Dot -->
1</td>
<td width="30" class="wz2">
</td>
</tr>
<tr>
<td colspan="3" height="20" style="font-size:0;line-height:1;" class="va2">
</td>
</tr>
</table>
</th>
<th width="139" class="stack3" data-border-left-color="borderColor" data-
border-bottom-color="borderColor" style="border-left:1px solid
#dde5f1;border-bottom:1px solid #dde5f1;margin:0; padding:0;">
<table width="139" align="center" cellpadding="0" cellspacing="0" border="0"
class="table60033">
<tr>
<td colspan="3" height="20" style="font-size:0;line-height:1;" class="va2">
</td>
</tr>
<tr>
<td width="30" class="wz2">
</td>
<td class="RegularText5TD" data-link-style="text-decoration:none;
color:#67bffd;" data-link-color="RegularLink" data-color="RegularTXT"
style="color: #425065;font-family: sans-serif;font-size: 14px;font-weight:
lighter;text-align: center;line-height: 23px;">
<a href="#" target="_blank" data-color="RegularLink" style="text-decoration:
none;color: #67bffd;">
</a>
<!--INSERT HERE Total for Kit 1 Blue Dot-->
$22.00</td>
<td width="30" class="wz2">
</td>
</tr>
<tr>
<td colspan="3" height="20" style="font-size:0;line-height:1;" class="va2">
</td>
</tr>
我想做的是通过php运行mysql查询来填充并获取产品的数量,例如这里显示的'blue dot'。然后取该数量并乘以价格,得出产品的总成本。我得到了我的查询,知道了如何通过php运行并获取数据。我只是不知道如何将数据放入此动态电子邮件模板中。我使用phpmailer邮寄此模板。任何帮助都会很棒!