mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-06-28 02:42:44 +08:00
feat: add imap proxy server (#225)
This commit is contained in:
10
smtp_proxy_server/models.py
Normal file
10
smtp_proxy_server/models.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from typing import Dict, List
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class EmailModel(BaseModel):
|
||||
headers: Dict[str, str]
|
||||
body: str
|
||||
content_type: str
|
||||
subparts: List["EmailModel"]
|
||||
size: int
|
||||
Reference in New Issue
Block a user