Schedule a message in Slack

You should be able to create a reminder sending a message to @slackbot The message should be like: /remind [@someone or #channel] [what] [when] Here’s some examples: /remind @username to do something in 24 hours or: /remind @username to do something at 16:00

How to mention user in slack.client

Posting an updated answer as this method no longer works since Slack updated their API. Now you have to discover the user’s ID using users.list, or just looking it up in the Slack app on their profile. Then for a given userID, you mention them by setting the text as follows: <@userID>. The link_names argument … Read more

Slack URL to open a channel from browser

Referencing a channel within a conversation To create a clickable reference to a channel in a Slack conversation, just type # followed by the channel name. For example: #general. To grab a link to a channel through the Slack UI To share the channel URL externally, you can grab its link by control-clicking (Mac) or … Read more