I create a Google form using a work account and make it "Restrict to [domain.com] users". Now I can collect the email address of person who submit the response firstly. And then here comes my question: Is it possible to collect the email address of anyone else who modify the previous response?
For example the situation like this, person A fill out a form and he share the edit link to his teammate person B, then person B update the response on that previous form. I wonder if there is any solution to retrieve the email of person B (without asking for their e-mail address in the form).
I tried to use getRespondentEmail(), however it doesn't work. It always return the email address of person A.
Session.getActiveUser()
? – Alan WellsSession.getActiveUser().getEmail()
andSession.getEffectiveUser().getEmail()
. Both they will return the same account as me, the owner of this form/script. – Kenny QiUsername
ine
got nothing if the user whoever edited the response. @_@ – Kenny Qi