Search code examples
htmlhtml-emailemail-templates

Hyperlinks getting rewritten in html email template


I have a link (link to my website) inside the template like this:

<td width="144">
    <a href= "www.bgrnature.com" target="_blank">
        <img src="" width="76" height="58" border="0" alt=""/>
    </a>
</td>

But after sending the html email template to recipient, the hyperlink gets rewritten. Why does this happen?

Check my link here


Solution

  • This is because you are missing http:// thats why URL gets appended on current url as a sub-directory Try to add http://

    <a href= "http://www.bgrnature.com/" target="_blank">