Skip to content

Instantly share code, notes, and snippets.

@travnewmatic
Last active September 29, 2023 21:11
  • Star 16 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
#!/bin/bash
# Adjust homserver, room, and accesstoken to your particular setup
# Script is expecting data to be piped in on STDIN
# Example:
# echo "some text" | sendmatrix
msgtype=m.text
homeserver=<homeserver>
room=<room id>
accesstoken=<access token>
curl -XPOST -d "$( jq -Rsc --arg msgtype "$msgtype" '{$msgtype, body:.}')" "https://$homeserver/_matrix/client/r0/rooms/$room/send/m.room.message?access_token=$accesstoken"
@CastilloLuis
Copy link

how can we quote a message from other user? basically how to reply to a message?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment