I'm developing a XMPP bot that will send/reply a message to the sender with a addition element as following
<message to="user1@example.com" from="user2@example.com">
<my_element_1>foo</my_element_1>
<my_element_2>bar</my_element_2>
<body>Hi!</body>
</message>
I've tried to used SleekXMPP Object
, Iq
, Message
but not able to achieve the target. Beside, I also tried to use send_message
method.
I'm not sure if my googling keyword is not correct but I'm not able to find any documentation or guide related to this. However, I did found guide that might be helpful for this related to plugin creation. Will be much appreciated if someone could help me on this.
Thank you