如何在 Node js 中编写 HTML 和 CSS 代码来向用户发送电子邮件
How to write HTML and CSS code in Node js to Send Eamils to Users
我想使用 node-cron 发送电子邮件,并希望为邮件设置样式。基本上,我想向用户发送如下所附的清单。我想写这样的东西
<table id="schedule">
<tr>
<th>Centre Name</th>
<th>Vaccine</th>
<th>Address</th>
<th>PinCode</th>
<th>Date</th>
<th>Fee Type</th>
</tr>
</table>
我想为 table 的这些元素设置样式。当我尝试在 Nodejs 中编写 CSS 代码时,它显示了一个错误。
我怎样才能在节点 js 中做到这一点。
return `
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top" bgcolor="#f6f6f8" style="background-color:#eeeeee;">
Some avesome things here
</td>
</tr>
</table>
`
像这样
我想使用 node-cron 发送电子邮件,并希望为邮件设置样式。基本上,我想向用户发送如下所附的清单。我想写这样的东西
<table id="schedule">
<tr>
<th>Centre Name</th>
<th>Vaccine</th>
<th>Address</th>
<th>PinCode</th>
<th>Date</th>
<th>Fee Type</th>
</tr>
</table>
我想为 table 的这些元素设置样式。当我尝试在 Nodejs 中编写 CSS 代码时,它显示了一个错误。 我怎样才能在节点 js 中做到这一点。
return `
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top" bgcolor="#f6f6f8" style="background-color:#eeeeee;">
Some avesome things here
</td>
</tr>
</table>
`
像这样