I created an HTML template and this template is used to send email to people. There is a hyperlink that I included in the email. However, when the email is received by the recipient the hyperlink is not active. I cant figure out what is the issue here.
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<h2>Your Quality Audit is complete!</h2>
<p>
Hello <?= data[0];?>,
</p>
<p><strong>This email is to let you know that a Quality Audit was completed for you.</strong></p>
<p>
The next step is for you to click this <a href=“https://drive.google.com/drive/folders/1MKlD631O5Rz2OdEPHsJMY7vNcPCvfTvP”> link </a> to view your audit results.
</p>
<p>If you have any questions regarding the audit, please reach out to your supervisor.</p>
<p>Best Regards,</p>
<p><?= data[4];?><br>Customer Support Team</p>
</body>
</html>
Below is the email received.
I followed the html formatting that I found when I looked it up on the internet. Not sure what I am doing wrong here.