-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
30 lines (27 loc) · 1017 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
function onFormSubmit(e) {
// Discord Webhook URLを記入
const discordWebhookUrl = '';
const items = e.response.getItemResponses();
const embed = {
title: "24常盤 Feedback通知",
description: "24常盤祭HPに関するFeedbackをもらいました!!",
fields: [],
color: 5814783 // 色を指定 (16進数で指定)
};
// 各回答をフィールドとして追加
for (let i = 1; i < items.length; i++) {
embed.fields.push({
name: items[i].getItem().getTitle(),
value: items[i].getResponse(), // フォームの回答をフィールドの値に
inline: false // フィールドをインライン表示しない
});
}
// Webhook に POST リクエストを送信
const payload = JSON.stringify({embeds: [embed]});
const options = {
method: 'post',
contentType: 'application/json',
payload: payload
};
UrlFetchApp.fetch(discordWebhookUrl, options);
}