回答編集履歴

1

追記

2021/05/21 03:39

投稿

itagagaki
itagagaki

スコア8402

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();`です。