Reputation: 678
I want to show the corresponding date on the recurring reminder of slack.
Ex: /remind me "Today is dd/mm/yyyy" at 07:00AM every Tuesday
Now i want to see the current date in the message instead of dd, mm, yyyy on that corresponding day.
Upvotes: 2
Views: 2066
Reputation: 1486
You can't do that via the remind command since Slack treats it as a message to send to. But you can definitely use the API to do so.
You can make a Cron Job that gets the date and formats it into the dd/mm/yy
or use a simple chat.postMessage
Upvotes: 1