所以我有一个联系表......它发送的邮件如下所示:
<h1>MSG from Website</h1>
<p>Some Text</p>
<table width="100%" border="0" cellspacing="1" cellpadding="10">
<tr bgcolor="#DFEFF0">
<th>Name</th>
<td><?=$name;?></td>
</tr>
<tr bgcolor="#BDD8DA">
<th>Email-Adresse</th>
<td><?=$email;?></td>
</tr>
<tr bgcolor="#DFEFF0">
<th>Telefonnummer</th>
<td><?=$phone;?></td>
</tr>
<tr bgcolor="#BDD8DA">
<th>telefonisch erreichbar</th>
<td>von <?=$r_from;?> bis <?=$r_to;?> Uhr</td>
</tr>
<tr bgcolor="#DFEFF0">
<th>Betreff</th>
<td><?=$subject;?></td>
</tr>
<tr bgcolor="#BDD8DA">
<th>Nachricht</th>
<td><?=$msg;?></td>
</tr>
</table>
我要添加到电子邮件内容中的是两个 php 时间对象。应该显示发送邮件的日期和时间。我使用<?=date("j.n.Y G:i");?>
...第二个时间对象应该显示电子邮件收件人的当前系统时间...我打算用这两个时间对象做一些数学运算:)
但我的问题是我看不到如何显示当前时间......也许这甚至不可能?例如,我可以在 Gmail 中查看电子邮件,并在邮件正文中显示一行 php,显示我当前的时间吗?