I need my Discord bot to send a welcome message in the following format:
Some text1
<img1>
Some text2
<img2>
Some text3
Currently, I am using this code (but it places all images at the end of the message):
const user = await client.users.fetch('<user ID>');
await user.send({ content:"Some text1\n",
files: [{ attachment: "img1" }] });
Is there a way to modify this code or use another one to achieve the desired format with all elements within a single message?