Metadata-Version: 2.4
Name: sendgridsend
Version: 0.1.3
Summary: Send an email from the command line using Python and a SendGrid API key.
Project-URL: Homepage, https://github.com/DefensiveOrigins/SendGridSend
Project-URL: Repository, https://github.com/DefensiveOrigins/SendGridSend
Project-URL: Issues, https://github.com/DefensiveOrigins/SendGridSend/issues
Author: Defensive Origins
Keywords: cli,command-line,email,mail,sendgrid
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Requires-Dist: requests>=2.25
Description-Content-Type: text/markdown

Python script to send an email with SendGrid using a SendGrid API Key

# Install
```
pip install sendgridsend
```

# Use:
```bash
# Python GIt Clone version

.\SG.py `
  -ApiKey "SG.xxxxxx" `
  -From you@example.com `
  -To alice@example.com,bob@example.com `
  -Subject "Hello" `
  -Text "This is a test." `
  -Cc carol@example.com `
  -Bcc dan@example.com

# PIP version
sendgridsend `
  -ApiKey "SG.xxxxxx" `
  -From you@example.com `
  -To alice@example.com,bob@example.com `
  -Subject "Hello" `
  -Text "This is a test." `
  -Cc carol@example.com `
  -Bcc dan@example.com

  ```
