CISCO spark has exposed few APIs that enable us to send a message to a certain email ID. Another good part is that, instead of sending the message from a certain user, you can create a Spark Bot and then send a message to the required user from the bot's ID. If you have a spark account, you can access the tutorials here and have fun. https://developer.ciscospark.com/getting-started.html Creating a bot instructions are available here: https://developer.ciscospark.com/bots.html I have tested these APIs and sent messages to myself from the bot's ID using Postman and a simple python script. You can download postman from the following link: https://www.getpostman.com/ and run the apis or run them directly from the interactive Rest API terminal that is present in one of the submenus in the above-mentioned link. You should try various other options as well. The Python script to send spark message: import json import requests if __name__=="_...