资 源 简 介
This is a small python class to send and receive text messages via gmail using libgmail found at http://libgmail.sourceforge.net/. It works by sending an email to a list of SMS email gateways.
Example:
a = GmailSMS(raw_input("Gmail Username: "), raw_input("Password: "))
ID = raw_input("Id of text: ")
number = raw_input("Number: ")
a.new_conversation(number, ID)
a.conversationsID.send_text("HELLO WORLD!",raw_input(": "))