I have created simple Gmail addon, now I\'m struggling with below strategies.
After installing the addon, when first inbox is opened, we ask basic info input from us
Robert , have you tried caching the user input ?
I do caching in the event handler.
function onDomainChange(e){ var cache = CacheService.getScriptCache(); Logger.log(e.formInput); cache.put('domain',e.formInput.domain); Logger.log(cache.get('domain')); }
Refer cache docs