Class User
详细文档
getEmail()
获取用户的电子邮件地址(如果有)。如果安全政策不允许访问
用户的电子邮件地址,则此方法会返回一个空字符串。如果电子邮件中
地址是否可用会有所变化:例如,在任何情况下都无法使用用户的电子邮件地址
允许脚本在未经用户授权的情况下运行的上下文,例如简单的 onOpen(e)
或 onEdit(e)
触发器、Google 表格中的自定义函数或 Web 应用
部署到“以我的身份执行”(即,由开发者而不是用户授权)。
但是,如果开发者自行运行脚本,这些限制通常不适用。
或与用户属于同一 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
- 用户的电子邮件地址。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-09-12。
[null,null,["最后更新时间 (UTC):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."]]],[]]