【发布时间】:2012-09-21 14:14:45
【问题描述】:
我正在使用 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>
我使用 来自 email address,它不像 no-reply@domain.com 那样存在
问题是该电子邮件是作为垃圾邮件收到的,我想修复它...可能是因为虚假的 from 电子邮件地址吗?
我猜 HTML 没问题
【问题讨论】:
标签: php codeigniter email html-email sendgrid