I am using Codeigniter and SendGrid for send my emails to the users...
I have a template for each email i send and for registration it looks like this:
<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>
I use a from email address
that doesn't exist like no-reply@domain.com
The problem is that the email is received as spam which i want to fix... could it be because of the fake from email address?
I guess the HTML is fine