我在具有功能的Google表格中发送电子邮件
MailApp.SendEmail(email, header, msg, {htmlbody: myHtmlBody});
在myHtmlBody中有:
<table> ... </table>
<form>
<input type="text" />
<button type="submit">Send back</button>
</form>
我想要的是:从邮件客户端填写输入,单击按钮,然后从表单中的输入中获取数据。 有可能吗?