easy as hell email sending for python
Project description
# emailx: easy as hell email sending for python
Install like this:
pip install emailx
Use like this:
from emailx import Email, smtp_connection
SMTP = 'smtp.example.com'
LOGIN = ('alex', 'password123')
dummy_recipients = 'Alex <alex+testing@example.com>'
with smtp_connection(SMTP, LOGIN) as c:
e = Email(
source='Alex <alex@example.com>',
subject='Hello',
body='Body',
html_body='<html>Body</html>',
to_addresses='Bobby <bobby@example.com',
bcc_addresses='Kim <kim@example.com>',
attachments={
'a.csv': csv_data
}
)
c.send(e)
Install like this:
pip install emailx
Use like this:
from emailx import Email, smtp_connection
SMTP = 'smtp.example.com'
LOGIN = ('alex', 'password123')
dummy_recipients = 'Alex <alex+testing@example.com>'
with smtp_connection(SMTP, LOGIN) as c:
e = Email(
source='Alex <alex@example.com>',
subject='Hello',
body='Body',
html_body='<html>Body</html>',
to_addresses='Bobby <bobby@example.com',
bcc_addresses='Kim <kim@example.com>',
attachments={
'a.csv': csv_data
}
)
c.send(e)
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
emailx-0.1.1510835164.tar.gz
(5.1 kB
view hashes)
Built Distribution
Close
Hashes for emailx-0.1.1510835164-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62718ccc08b9c8c60bbad433086cdccc04df71df3bfc40ea87db946fed0e80d2 |
|
MD5 | 3e83b061d48a499653edfaab7738f641 |
|
BLAKE2b-256 | 55a50219cd2459acdc7b06f0c473b0b273c3ac39e17e4679a03672efc0fb50b9 |