# lathermail_client **Repository Path**: mirrors_reclosedev/lathermail_client ## Basic Information - **Project Name**: lathermail_client - **Description**: Python API client for lathermail SMTP server - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2025-10-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README .. image:: https://travis-ci.org/reclosedev/lathermail_client.svg?branch=master :target: https://travis-ci.org/reclosedev/lathermail_client .. image:: https://coveralls.io/repos/reclosedev/lathermail_client/badge.svg?branch=master&service=github :target: https://coveralls.io/github/reclosedev/lathermail_client?branch=master lathermail_client ================= Python API client for `lathermail `_ SMTP server. Usage: .. code-block:: python from lathermail_client import LathermailClient user, password = "user", "password" url = "http://127.0.0.0:5000/" client = LathermailClient(user, password, url) print(client.get_inboxes()) print(client.get_messages(recipients_address="to@example.com")) print(client.get_single_message("some_id"))