Varsa kullanıcının e-posta adresini alır. Güvenlik politikaları
kullanıcının e-posta adresine ayarlanırsa bu yöntem boş bir dize döndürür. E-postanın hangi durumlarda
kullanılabilir değişiklik gösterebilir: Örneğin, kullanıcının e-posta adresi hiçbir
Basit bir onOpen(e) veya onEdit(e) tetikleyicisi, Google E-Tablolar'daki özel bir işlev veya bir web uygulaması gibi bir komut dosyasının kullanıcının yetkilendirmesi olmadan çalıştırılmasına olanak tanıyan bağlam
"ben olarak yürüt" moduna dağıtıldı (yani kullanıcı yerine geliştirici tarafından yetkilendirilir).
Ancak, geliştirici komut dosyasını kendisi çalıştırıyorsa bu kısıtlamalar genellikle geçerli değildir.
veya kullanıcıyla aynı Google Workspace alanına ait olmalıdır.
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getEmail());
Return
String - Kullanıcının e-posta adresi veya güvenlik politikaları erişime izin vermiyorsa boş bir dize
kullanıcının e-posta adresine.
Desteği sonlandırılan yöntemler
getUserLoginId()
Kullanımdan kaldırıldı. 24 Haziran 2013 itibarıyla, getEmail() ile değiştirilmiştir.
Kullanıcının e-posta adresini alır.
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getUserLoginId());
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 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."]]],[]]