Metadata-Version: 1.1
Name: emailsms
Version: 0.1
Summary: Send text messages using email SMS gateways.
Home-page: https://bitbucket.org/socos_me/emailsms
Author: Brandon Istenes
Author-email: bistenes@socos.me
License: Apache License 2.0
Download-URL: https://bitbucket.org/socos_me/emailsms/get/0.1.tar.gz
Description: emailsms
        ===========
        
        Module for sending SMS via email SMS gateways. Requires an email account to
        send from, and for the phone service provider of the recipient to be known.
        
        Email SMS gateways are unreliable at best. This is not a suitable method for
        sending texts for any production use. This is, however, a free and easy way
        to prototype SMS-based services.
        
        
        Usage
        -----
        
        ::
        
            >>> import emailsms
            >>> smtp = emailsms.gmail_smtp('foo@gmail.com', 'password')
            >>> emailsms.send(smtp, '0000000000', "Hi it's me", 'Verizon')
            >>> print emailsms.carriers
        
        
        
        Contributing
        ------------
        
        Pull requests welcome!
        https://bitbucket.org/socos_me/emailsms
        
        
        About Socos
        -----------
        
        Socos LLC is the only organization currently taking naturalistic student experiences as the basis for
        assessments. The solution to improving education and the learning gap is to close the educational
        loop, and provide relevant feedback to educators and parents on what they can do in naturalistic
        setting to improve life-outcomes. 
        
        Learn more at http://www.socoslearning.com/
        
Keywords: sms,texting,phone,gateway,email
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
