Skip to main content

A simple tool for sending mail by Python

Project description

PyMailMan
===
A simple tool for sending mail by Python

###Project homepage
https://github.com/kongkongyzt/PyMailMan

###Install
```sh
sudo pip install PyMailMan
```

###Usage
+ To send the text

```python
from PyMailMan import PyMailMan

mail = PyMailMan(host='smtp.qq.com', user='12345678', password='12345678')
mail.send(
['783087000@qq.com'],
'This is title',
'This is the content'
)
print 'OK' if mail.status else mail.errMsg
```

+ To send the HTML

```python
from PyMailMan import PyMailMan

mail = PyMailMan(host='smtp.qq.com', user='12345678', password='12345678')
mail.send(
['783087000@qq.com'],
'This is title',
"<p style='color:red'>This is the content</p>"
)
print 'OK' if mail.status else mail.errMsg
```

+ To send the email with file

```python
from PyMailMan import PyMailMan

mail = PyMailMan(host='smtp.qq.com', user='12345678', password='12345678')
#You need to write the absolute path of the file
mail.send(
['783087000@qq.com'],
'This is title',
'This is the content',
'/home/kongkongyzt/a.txt',
'/home/kongkongyzt/b.txt'
)
print 'OK' if mail.status else mail.errMsg
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyMailMan-0.2.tar.gz (2.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page