Hi and thanks for taking the time to help.
I'm currently using the following code
#!/usr/bin/env python
# Sample script to show how to send SMS
import gammu
import sys
sm = gammu.StateMachine()
sm.ReadConfig()
sm.Init()
message = {
'Text': 'python-gammu testing message',
'SMSC': {'Location': 1},
'Number': '+584126555508',
}
# Actually send the message
sm.SendSMS(message)
It works fine, But how can i be sure that the SendSMS Function really sent the message...
for example: sent, unsent as a result from the SendSMS function return value.
Thanks for your answers in advance.