Returns the email of the user running the script.
class Session method .getActiveUser()
Session is the Apps Script service.
.getActiveUser() is the method name you will see after a dot in your code.
What it does
Why it's used
- Log who ran the script in an audit column.
- Personalize messages with the runner's email.
Common errors
- Forgetting parentheses on getActiveUser. Write Session.getActiveUser(), not Session.getActiveUser or getActiveUser by itself.
- Skipping dots between chained calls. Each step needs a dot, like Session.getActiveUser().
- Adding spaces where they do not belong. Write Session.getActiveUser(), not Session .getActiveUser(), Session.getActiveUser (), or Session . getActiveUser().
- Wrong capitalization. Use Session and getActiveUser, not session or getactiveuser.
Explore
Related methods
-
.getEffectiveUser()
Returns the email of the user whose permissions the script is using.
-
.getTemporaryActiveUserKey()
Returns a temporary key that identifies the current user.
-
.getScriptTimeZone()
Returns the time zone set on the script project.
More Apps Script
Better Sheets tutorials
No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.
Related blog posts
Written guides about Session.getActiveUser().
How to Send Google Forms Entries Automatically with Apps Script
Google Forms provides basic email notifications for form submissions, but enhancing these notifications with detailed summaries can significantly improve productivity and response management.
Read post →How to reference a different Google Spreadsheet in Apps Script?
Transferring Data Between Cells in Different Spreadsheets
Read post →Extract URLs from Google Sheets
Extract url from hyperlink google sheets.Skip the Command K. This Google Sheet tutorial will make it easier for you to extract URLS from Google Sheets.
Read post →