回答編集履歴
1
追記
test
CHANGED
@@ -11,3 +11,35 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
[sendEmail(recipient, subject, body, options)](https://developers.google.com/apps-script/reference/mail/mail-app#sendEmail(String,String,String,Object))
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
(追記)
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
すみません、上のリンクはMailAppのリファレンスでした。
|
22
|
+
|
23
|
+
GmailAppのリファレンスはこちら
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
[sendEmail(recipient, subject, body, options)](https://developers.google.com/apps-script/reference/gmail/gmail-app?hl=en#sendemailrecipient,-subject,-body,-options)
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
いずれにしても、引数の数は(`options`を指定する場合は)4つです。
|
32
|
+
|
33
|
+
ファイルを添付したければ、4番目の引数`options`で指定します。
|
34
|
+
|
35
|
+
具体例は下記ページがわかりやすいと思います。
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
[Google Apps Scriptから添付ファイル付きメールを送信する方法 | 非IT企業に勤める中年サラリーマンのIT日記](http://pineplanter.moo.jp/non-it-salaryman/2021/06/20/gas-attachedmail/)
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
`options`では添付ファイルの他にもいろいろな指定ができます。
|
44
|
+
|
45
|
+
何が指定できるかは上のGmailAppのリファレンスを見てください。
|