노션 멤버 추가 시 요금 폭탄 주의 – 게스트 초대할 때 꼭 확인하세
노션에서 게스트를 초대하다 실수로 멤버로 등록하면 추가 요금이 즉시 청구됩니다. 멤버를 삭제해도 환불이 어려운 이유와 실수를 방지하는 방법을 안내합니다.
에듀파인 공문을 매번 찾아보기 번거로우신가요? 노션과 Make, 구글드라이브를 연동하면 공문을 자동으로 분류하고 폴더별로 정리할 수 있습니다.
공문 읽고 → 즉시 해당 업무를 처리 → 끝! 이라면 모르겠으나Webhook(시나리오의 트리거)/** * ✅ 이 함수는 트리거가 없는 경우에만 checkFolderAndSendWebhook 함수를 * 1분 간격으로 자동 실행되도록 트리거를 설정합니다. * 👉 스크립트를 공유받은 사용자가 이 함수를 직접 1번 실행하면 됩니다. */ function installTrigger() { const existingTriggers = ScriptApp.getProjectTriggers(); const targetFunctionName = 'checkFolderAndSendWebhook'; const alreadyExists = existingTriggers.some(trigger => trigger.getHandlerFunction() === targetFunctionName && trigger.getEventType() === ScriptApp.EventType.CLOCK ); if (!alreadyExists) { ScriptApp.newTrigger(targetFunctionName) .timeBased() .everyMinutes(1) .create(); Logger.log('✅ 트리거가 새로 설치되었습니다.'); } else { Logger.log('⚠️ 트리거가 이미 존재합니다. 중복 설치하지 않습니다.'); } } /** * ⏱️ 이 함수는 매 1분마다 실행되며, * 특정 구글 드라이브 폴더 내에 파일이 존재하면 Webhook으로 파일 정보를 전송합니다. */ function checkFolderAndSendWebhook() { const folderId = '이 위치에 공문을 마구 짱박아둘 폴더 ID를 입력합니다.'; // ✅ 사용자 폴더 ID const webhookUrl = '이 위치에 메이크에서 만든 웹훅 URL을 입력합니다.'; // ✅ 사용자 Webhook URL const folder = DriveApp.getFolderById(folderId); const files = folder.getFiles(); let fileList = []; while (files.hasNext()) { const file = files.next(); fileList.push({ id: file.getId(), name: file.getName(), url: file.getUrl(), mimeType: file.getMimeType(), createdDate: file.getDateCreated() ? file.getDateCreated().toISOString() : null, lastUpdated: file.getLastUpdated() ? file.getLastUpdated().toISOString() : null }); } if (fileList.length > 0) { const options = { method: 'post', contentType: 'application/json', payload: JSON.stringify({ files: fileList }) }; UrlFetchApp.fetch(webhookUrl, options); } }
IteratorMatch pattern[학교명-문서번호 발신기관] (본문 or 첨부) 제목의 형태로 정형화되어 있습니다.^\(([^\(]+?)\s*\(본문\)\s*(.*?)\)\s*(.+)$
Create a Folder[학교명-문서번호]제목(발신기관) 형태로 조립합니다.$1)}}]$3}}$2; "(" + 3.$2 + ")"; )}}Search for Files/FoldersMatch Pattern 모듈에서 추출한 $1 값을 매핑하세요.Search for Files/Folders 모듈에서 추출한 file ID를 매핑하세요.Create a Folder 모듈에서 생성한 Folder Id를 매핑하세요.Immediately as data arrives 토글을 ON!