我試圖在Html模板中爲Google應用程序腳本指定mailto鏈接。不幸的是,鏈路將@符號傳遞給mailto字段,或者如何繞過google-app-script中的URL編碼
<a href="mailto:[email protected]">
轉換爲
<a href="mailto:foo%40bar.com">
因爲所涉及的處理。我將如何返回正確的mailto鏈接? 更簡單地說,當我做通過調用返回的HTML:
function doGet(request) {
return HtmlService.createHtmlOutput('<a href="[email protected]">mail me</a>');
}
返回的HTML是:
<a target="_parent" href="mailto:foo%40bar.com">mail me</a>
這是確定的某些郵件應用程序(Mac郵件),但不是標準。謝謝你在前進,
如果您提供模板/模板的一部分,會不會更容易? – g00glen00b