Metadata-Version: 2.3
Name: send_text_Foxtrot2400
Version: 0.4.9
Summary: A simple package to simplify the process to send text messages using the SMTP mail protocol.
Project-URL: Homepage, https://github.com/Foxtrot2400/sendtext_SMTP
Project-URL: Issues, https://github.com/Foxtrot2400/sendtext_SMTP/issues
Author-email: Foxtrot2400 <thefoxtrot2400@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# SendText
A simple package to simplify the process to send text messages using the SMTP mail protocol.

## SETUP

You will need a app password if you are utilizing Gmail as your source email. 
Reference this help article: https://support.google.com/accounts/answer/185833?hl=en


## USAGE

### Import the module
  `import SendText`

### Setting up the source email
  `messenger = SendText.SMTP("YOUR_SOURCE_EMAIL", "YOUR_APP_PASSWORD", "YOUR_SMTP_SERVER", SMTP_PORT)`
  Using YOUR_SMTP_SERVER should look like `"smtp.gmail.com"` and SMTP_PORT `587` for gmail as an example.

### Sending a text message
  messenger.send_message("PHONE_NUMBER@CARRIER.COM", "MESSAGE")
  Note that for texts with multiple lines, you can use \r to indicate a newline.
