TurboSMTP client
Project description
TurboSMTP client for service http://serversmtp.com
TurboSMTP (http://serversmtp.com) is online service for sending emails. TurboSMTP client is very simple Python library for using online API of this service. The difference between this client and client provided by serversmtp.com (http://www.serversmtp.com/en/smtp-api) is in a way how e-mail messages are handled. This library supports python built-in email module, which makes composing complex e-mail messages much easier.
To use this module you have to have account at http://serversmtp.com . Basic account is free of charge.
Version
1.0.1
Installation
sh:
$ pip install turbosmtp
Usage
python:
import turbosmtp
from email import message
message = message.Message()
message["From"] = "from@address.com"
message["To"] = "to@addresss.com"
message["Subject"] = "Hello World!"
smtp = turbosmtp.TurboSMTP("your_username", "your_password")
smtp.send(message)
Want to contribute?
Anyone is welcome to contribute to this project :). Just contact me on Github.
License
GNU GENERAL PUBLIC LICENSE
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file turbosmtp-1.0.1.tar.gz.
File metadata
- Download URL: turbosmtp-1.0.1.tar.gz
- Upload date:
- Size: 1.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f53dfd489499e6171b0acd4dbdae992c561226bb808330d6f4e5d2c2277638f9
|
|
| MD5 |
cf2b5c5d5ec9e15ac6759a1de89a4087
|
|
| BLAKE2b-256 |
4d09a0fc1de296e216f639f781d7e4795c49cc1b31caf1b75156e19857dbf2a6
|