我正在使用 Codeigniter 和 SendGrid 将我的电子邮件发送给用户......
我发送的每封电子邮件都有一个模板,用于注册,它看起来像这样:
<html>
<body>
<h1>Activate account for <?php echo $identity;?></h1>
<p>Please click this link to <?php echo anchor('auth/activate/'. $id .'/'. $activation, 'Activate Your Account');?>.</p>
</body>
</html>
我使用一个不存在的from email address
no-reply@domain.com
问题是该电子邮件是作为垃圾邮件收到的,我想修复它......可能是因为电子邮件地址是假的吗?
我猜HTML很好