Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- async function sendMessage(message) {
- const data = {
- content: message,
- };
- const options = {
- method: 'POST',
- headers: {
- 'Content-Type': 'application/json',
- },
- body: JSON.stringify(data),
- };
- const response = await fetch("INSERT_WEBHOOK_URL_HERE", options);
- return response.ok;
- }
Advertisement
Add Comment
Please, Sign In to add comment