Class User
內容詳盡的說明文件
getEmail()
取得使用者的電子郵件地址 (如有)。如果安全性政策禁止存取
使用者電子郵件地址,這個方法會傳回空白字串。電子郵件的用途
電子郵件地址是否可供使用:例如,使用者的電子郵件地址在任何情況下均無法使用
讓指令碼在未經使用者授權的情況下直接執行,例如簡單的 onOpen(e)
或 onEdit(e)
觸發條件、Google 試算表的自訂函式,或是網頁應用程式
部署至「以我的身分執行」(也就是獲得開發人員授權,而非使用者授權)。
不過,如果開發人員自行執行指令碼,這些限制通常不適用
或隸屬於使用者所屬的 Google Workspace 網域
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getEmail());
回攻員
String
:使用者的電子郵件地址,如果安全性政策不允許存取,則為空白字串
使用者的電子郵件地址
已淘汰的方法
getUserLoginId()
已淘汰。自 2013 年 6 月 24 日起,由 getEmail()
取代。
取得使用者的電子郵件地址。
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getUserLoginId());
回攻員
String
:使用者的電子郵件地址。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-09-12 (世界標準時間)。
[null,null,["上次更新時間:2024-09-12 (世界標準時間)。"],[[["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."]]],[]]