Created
October 16, 2025 05:24
-
-
Save ochilab/089fe53dde2f9bc5ad80bd678c5e5b98 to your computer and use it in GitHub Desktop.
Googleフォームにて「確認済みメールアドレスで収集」モードを有効にする
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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