#Can we tag the message id right after we send it?
8 messages · Page 1 of 1 (latest)
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
✅Marked as resolved by OP
<User>.send() (or similar) returns a promise which can resolve into a Message. So you’ll want to resolve the promise from that and then use <Message>.url
And then you can send the message url
I am very bad with those terms but...
Did you mean something like this?
const testMessage = await owner.send('This is a test message inside your DM')
interaction.reply(`Please check your DM's\n${testMessage.url}`)```
Seems right
oh okay
Thank you