0

こんにちは。お時間を割いていただきありがとうございます。

現在、次のコードを使用しています

#!/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)

正常に動作しますが、SendSMS 関数が本当にメッセージを送信したことを確認するにはどうすればよいですか...

例: SendSMS 関数の戻り値の結果として、送信済み、未送信。

事前にご回答いただきありがとうございます。

4

1 に答える 1

1
try:
  # Send SMS if all is OK
  sm.SendSMS(message)
  print 'Success, SMS was Sent'

except gammu.GSMError:
    # Show error if message not sent
    print 'Error, SMS not Sent'
于 2014-01-04T14:27:59.200 に答える