15 lines
168 B
Python
15 lines
168 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
def fetch():
|
|
pass
|
|
|
|
|
|
def send(email, subject, body):
|
|
pass
|
|
|
|
|
|
def delete(content):
|
|
# TODO delete mail
|
|
pass
|