0

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.

enter image description here

I followed the html formatting that I found when I looked it up on the internet. Not sure what I am doing wrong here.

Shan Jose
  • 15
  • 3
  • 1
    Convert this part of the code ` link ` to ` link ` – Arash Feb 05 '23 at 19:59
  • Got it. The double quotes was the mistake. I deleted the double quotes and put them back and it worked. Thanks. Could you also look into this for me. Someone had answered but I still have some issues with it. Maybe you can help. https://stackoverflow.com/questions/75330143/app-script-for-saving-a-sheet-as-pdf-to-a-specific-folder/75330467#75330467 – Shan Jose Feb 05 '23 at 22:36

0 Answers0