9 lines
108 B
Python
9 lines
108 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
SMTP connection handling
|
|
"""
|
|
|
|
from .pool import SMTPPool
|
|
|
|
__all__ = ['SMTPPool']
|