Skip to content

Instantly share code, notes, and snippets.

@ochilab
Created October 16, 2025 05:24
Show Gist options
  • Save ochilab/089fe53dde2f9bc5ad80bd678c5e5b98 to your computer and use it in GitHub Desktop.
Save ochilab/089fe53dde2f9bc5ad80bd678c5e5b98 to your computer and use it in GitHub Desktop.
Googleフォームにて「確認済みメールアドレスで収集」モードを有効にする
form.setIsQuiz(true);
form.setCollectEmail(true); // メールアドレス収集
//form.setRequireLogin(true); // 非推奨メソッド (これは使わない)
//確認済みメールアドレスで収集 (これが正解)
form.setEmailCollectionType(FormApp.EmailCollectionType.VERIFIED);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment