So I have a SMTP server to send emails. I want to include some hyperlinks in the email. Right now I am constructing the hyperlinks like this:
<body>
<ul>
<li><a href="https://google.com">https://google.com</a></li>
</ul>
</body>
However, when I received it from outlook. The link is not displayed as expected and is not clickable. When I do an inspect element, I am getting:
<body>
<ul>
<li>[/https://google.com]https://google.com</li>
</ul>
</body>
Can someone please suggest what I am doing wrong? Thanks!
You have to enable HTML for the body of the Mail message.