사용자의 이메일 주소를 가져옵니다(사용 가능한 경우). 보안 정책에서
이메일 주소를 입력하면 이 메서드는 빈 문자열을 반환합니다. 이메일이 전송되는 상황은
주소는 다양합니다. 예를 들어 사용자의 이메일 주소는 어느 국가에서도 사용할 수 없습니다.
간단한 onOpen(e) 또는 onEdit(e) 트리거, Google Sheets의 맞춤 함수, 웹 앱 등 사용자의 승인 없이 스크립트를 실행할 수 있는 컨텍스트
'Execute as me' 기능이며 즉, 사용자가 아닌 개발자가 승인해야 합니다.
그러나 일반적으로 개발자가 스크립트를 직접 실행하는 경우에는 이러한 제한이 적용되지 않습니다.
사용자와 동일한 Google Workspace 도메인에 속한 사용자여야 합니다.
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getEmail());
리턴
String - 사용자의 이메일 주소 또는 보안 정책에서 액세스를 허용하지 않는 경우 빈 문자열
사용자의 이메일 주소로 전송합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-09-12(UTC)"],[[["Represents a user for scripting purposes, providing methods to access user information."],["`getEmail()` retrieves the user's email address if permitted by security policies, returning a blank string otherwise."],["`getUserLoginId()` is deprecated and replaced by `getEmail()` for retrieving the user's email address."],["Access to the user's email address might be restricted in certain contexts due to security considerations, such as unauthorized script execution."]]],[]]