2020-12-07 15:01:09 +01:00
|
|
|
# pymail
|
|
|
|
|
|
|
|
Easily send mails via SMTP and python
|
|
|
|
|
|
|
|
## Setup
|
|
|
|
1. Copy `vars.py.example` to `vars.py`
|
2022-10-09 19:14:16 +02:00
|
|
|
2. Setup `vars.py` with your credentials and config
|
|
|
|
3. Adapt `message.htmt` and save your contact list to `contacts.csv`
|
2020-12-07 15:01:09 +01:00
|
|
|
|
|
|
|
## Usage
|
2022-10-05 11:46:40 +02:00
|
|
|
```python mail.py```
|
|
|
|
|
|
|
|
## Templating
|
|
|
|
You can use the keys from your `csv` directly, prepending a `$` sign. For example:
|
|
|
|
```
|
|
|
|
Hello $name, your value is $value!
|
|
|
|
```
|
|
|
|
would look like the following:
|
|
|
|
```
|
|
|
|
Hello h4xx0r, your value is 1337!
|
2022-10-09 19:17:19 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
With a `contacts.csv` looking like:
|
|
|
|
| name | value |
|
|
|
|
|--------|-------|
|
|
|
|
| h4xx0r | 1337 |
|