mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
display website_from on alias log
This commit is contained in:
parent
d160971cc7
commit
7f908a9da8
3 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
|||
<div class="my-2 p-2 card">
|
||||
<div class="font-weight-bold">{{ log.when | dt }}</div>
|
||||
<div>
|
||||
<span class="mr-2">{{ log.website_email }}</span>
|
||||
<span class="mr-2">{{ log.website_from or log.website_email }}</span>
|
||||
|
||||
<span>
|
||||
{% if log.is_reply %}
|
||||
|
|
|
@ -12,6 +12,7 @@ from app.models import GenEmail, ForwardEmailLog, ForwardEmail
|
|||
@dataclass
|
||||
class AliasLog:
|
||||
website_email: str
|
||||
website_from: str
|
||||
alias: str
|
||||
when: arrow.Arrow
|
||||
is_reply: bool
|
||||
|
@ -50,6 +51,7 @@ def get_alias_log(gen_email: GenEmail):
|
|||
for fe, fel in q:
|
||||
al = AliasLog(
|
||||
website_email=fe.website_email,
|
||||
website_from=fe.website_from,
|
||||
alias=gen_email.email,
|
||||
when=fel.created_at,
|
||||
is_reply=fel.is_reply,
|
||||
|
|
|
@ -104,6 +104,7 @@ class MailHandler:
|
|||
forward_email = ForwardEmail.create(
|
||||
gen_email_id=gen_email.id,
|
||||
website_email=website_email,
|
||||
website_from=msg["From"],
|
||||
reply_email=reply_email,
|
||||
)
|
||||
db.session.commit()
|
||||
|
|
Loading…
Reference in a new issue