Reputation:
my question is whether Slack can Send Direct Message to ALL persons on my group on SLACK (Not group message I want to send an individual message
Upvotes: 3
Views: 2213
Reputation: 32698
There is no API method for that, but you can create this functionality easily with a small script.
users.list
deleted =
false
)chat.postMessage
by
using their user ID as channelBe sure though to respect the rate limit of max. 1 message per second or the API will return errors.
Upvotes: 4