I send email in Google Sheet with function
MailApp.SendEmail(email, header, msg, {htmlbody: myHtmlBody});
In myHtmlBody there are:
<table> ... </table>
<form>
<input type="text" />
<button type="submit">Send back</button>
</form>
What I want: from mail client fill input, click button and get data from this input in my sheet. Is there possible?