回答編集履歴
1
追記
test
CHANGED
@@ -5,3 +5,11 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
[Class GmailApp | Apps Script | Google Developers](https://developers.google.com/apps-script/reference/gmail/gmail-app#sendEmail(String,String,String,Object))
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
ログインユーザーを取得するには`Session.getActiveUser()`を使用します。
|
12
|
+
|
13
|
+
そのユーザーのメールアドレスを取得するには`getEmail()`を使用します。
|
14
|
+
|
15
|
+
つまり`Session.getActiveUser().getEmail();`です。
|