# # sendsms.py - send SMS # # python sensms.py +12345678901 hello more world # # # Copyright (c) 2007, DreamTime.net Inc. # All rights reserved. # Email: sales@diamondcard.us # Phone: 1-303-997-0900 # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the DreamTime.net Inc. nor the # names of its contributors may be used to endorse or promote products # derived from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY DreamTime.net Inc. ``AS IS'' AND ANY # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. IN NO EVENT SHALL DreamTime.net Inc. BE LIABLE FOR ANY # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # # Fill in your account Id and pin code below ACC = '' PIN = '' ME="12345678901" import httplib import sys, os def _send_sms(params): headers = {'SOAPAction': u'"http://sms.diamondcard.us/SMSapi#send"', 'Content-Type': 'text/xml',} data = "".join([ """""", """""", """ %(account_id)s %(pin_code)s %(message)s %(sent_from)s %(destination)s """ % params,]) connection = httplib.HTTPConnection("sms.diamondcard.us", 80) connection.request("POST", "/", data, headers) response = connection.getresponse() print response.read() def from_me(tono, *args): params={ 'account_id': ACC, 'pin_code': PIN, 'message': ' '.join(args), 'sent_from': ME.replace("+",""), 'destination': tono.replace("+",''), } print params _send_sms(params) if __name__ == "__main__": from_me(*sys.argv[1:])