pyapp-org/pyapp.SMTP

View on GitHub
pyapp_ext/smtp/default_settings.py

Summary

Maintainability
A
0 mins
Test Coverage
SMTP = {"default": {"host": "localhost"}}
"""
SMTP server settings

Example settings::

    SMTP = {
        "default": {
            "host": "localhost",
            "port": 23,
            "username": None,
            "password": None,
        },
    }
"""