```python @app.config def config(env: str) -> StelvioAppConfig: return StelvioAppConfig( customize={ Email: { "dmarc": {"ttl": 300} } } ) ``` ```python @app.run def run() -> None: email = Email("stlv_email", "example.org", customize={"dmarc": {"ttl": 400}}) ```