質問編集履歴
2
コメントの修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -25,7 +25,7 @@
|
|
25
25
|
function main() {
|
26
26
|
|
27
27
|
//Gmailから特定条件のスレッドを検索しメールを取り出す
|
28
|
-
//外部からの返信や
|
28
|
+
//外部からの返信やチーム内での返信は除外する
|
29
29
|
var query = '(is:unread "問い合わせ")';
|
30
30
|
query = ' OR (in:spam "問い合わせ")';
|
31
31
|
query = ' OR (- "RE")';
|
1
変数の編集
title
CHANGED
File without changes
|
body
CHANGED
@@ -63,7 +63,7 @@
|
|
63
63
|
|
64
64
|
//シートの最終行に追加
|
65
65
|
objSheet.getRange(lastRow+1, 1).setValue(date);
|
66
|
-
objSheet.getRange(lastRow+1, 2).setValue(
|
66
|
+
objSheet.getRange(lastRow+1, 2).setValue(eInformation);
|
67
67
|
objSheet.getRange(lastRow+1, 3).setValue(link);
|
68
68
|
objSheet.getRange(lastRow+1, 4).setValue(msid);
|
69
69
|
|