core.mail_processor =================== .. py:module:: core.mail_processor Submodules ---------- .. toctree:: :maxdepth: 1 /autoapi/core/mail_processor/core/index /autoapi/core/mail_processor/postmark/index /autoapi/core/mail_processor/smtp/index Classes ------- .. autoapisummary:: core.mail_processor.PostmarkMailQueueProcessor core.mail_processor.SMTPMailQueueProcessor Package Contents ---------------- .. py:class:: PostmarkMailQueueProcessor(postmark_token: str, *paths: str, limit: int | None = None) Bases: :py:obj:`core.mail_processor.core.MailQueueProcessor` .. py:attribute:: url :value: 'https://api.postmarkapp.com/email/batch' .. py:attribute:: curl .. py:method:: send(filename: str, payload: str) -> bool Sends the mail and returns success as bool .. py:method:: send_request(payload: str) -> tuple[int, str] Performes the API request using the given payload. .. py:class:: SMTPMailQueueProcessor(mailer: smtplib.SMTP, *paths: str, limit: int | None = None) Bases: :py:obj:`core.mail_processor.core.MailQueueProcessor` .. py:attribute:: mailer .. py:method:: parse_payload(filename: str, payload: str) -> list[email.message.EmailMessage] .. py:method:: send(filename: str, payload: str) -> bool Sends the mail and returns success as bool