0

Google スクリプトにハイパーリンクを挿入しようとしていますが、ハイパーリンクなしでテキストが明確に返されます。以下を確認してください。

if (emailSent != Email_Sent) {
      if (visitType == "Taking") {
        var subject = "Equipment Checked out from Storage";
        MailApp.sendEmail(emailAddress,
                          subject,
                          "Hello" +
                          "\n\nThis is a reminder for myself " + emailAddress + 
                          "\n\nI am " + visitType + " " + amount + " x " + equipment + 
                          "\n\nRemember to return it within 15 days unless i want to keep the equipment" + 
                          "\n\nThanks" +
                          "\n\n For the sake of improving our service, please complete the feedback form " + **<a href="https://docs.google.com/a/1234/sharing/.."> here </a>);**
4

1 に答える 1