How am I supposed to mention all with the message I am sending
<code>from skpy import Skype
SKYPE_EMAIL = 'user' # Your Skype email address
SKYPE_PASSWORD = 'pass' # Your Skype password
TOKEN_FILE = "tokens.txt"
skype = Skype(SKYPE_EMAIL, SKYPE_PASSWORD, tokenFile=TOKEN_FILE)
RECIPIENT_ID = '19:[email protected]'
message = "Hello Group Members"
skype.chats[RECIPIENT_ID].sendMsg(message,'<at id="*">all</at>', rich = True )
</code>
<code>from skpy import Skype
SKYPE_EMAIL = 'user' # Your Skype email address
SKYPE_PASSWORD = 'pass' # Your Skype password
TOKEN_FILE = "tokens.txt"
skype = Skype(SKYPE_EMAIL, SKYPE_PASSWORD, tokenFile=TOKEN_FILE)
RECIPIENT_ID = '19:[email protected]'
message = "Hello Group Members"
skype.chats[RECIPIENT_ID].sendMsg(message,'<at id="*">all</at>', rich = True )
</code>
from skpy import Skype
SKYPE_EMAIL = 'user' # Your Skype email address
SKYPE_PASSWORD = 'pass' # Your Skype password
TOKEN_FILE = "tokens.txt"
skype = Skype(SKYPE_EMAIL, SKYPE_PASSWORD, tokenFile=TOKEN_FILE)
RECIPIENT_ID = '19:[email protected]'
message = "Hello Group Members"
skype.chats[RECIPIENT_ID].sendMsg(message,'<at id="*">all</at>', rich = True )
New contributor
Subhan Khan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.