send an attachment discord.js code example
Example: send file discord.js
message.channel.send("Testing message.", { files: ["./images/headpat1.png"] });
//pls like if this worked!
// The file variable has to be an array
// even if you want to send one file.
// But because it is an array you can send multiples files.
// For exemple:
message.channel.send("Testing message.", {
files: [
"./images/headpat1.png",
"./images/headpat2.png"
]
});