1

我正在使用 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 addressno-reply@domain.com

问题是该电子邮件是作为垃圾邮件收到的,我想修复它......可能是因为电子邮件地址是假的吗?

我猜HTML很好

4

1 回答 1

1

请参考这些问题,因为这基本上与 CI/SG 无关,而是一般的电子邮件问题,通常会导致上下文和标头问题:

  1. https://serverfault.com/questions/48428/how-to-send-emails-and-avoid-them-being-classified-as-spam
  2. http://www.allspammedup.com/2009/09/7-ways-to-prevent-your-emails-being-blocked-as-spam/
  3. 如何确保以编程方式发送的电子邮件不会自动标记为垃圾邮件?
于 2012-09-30T12:39:38.183 回答