diff --git a/src/paperless_tika/mail_template/index.html b/src/paperless_tika/mail_template/index.html
index f7d7fbf9d..7a8740dd8 100644
--- a/src/paperless_tika/mail_template/index.html
+++ b/src/paperless_tika/mail_template/index.html
@@ -14,24 +14,20 @@
{{ date }}
- From
+ {{ from_label }}
{{ from }}
- Subject
- {{ subject }}
-
+ {{ subject_label }}
+ {{ subject }}
- To
- {{ to }}
-
+ {{ to_label }}
+ {{ to }}
- CC
- {{ cc }}
-
+ {{ cc_label }}
+ {{ cc }}
- BCC
- {{ bcc }}
-
+ {{ bcc_label }}
+ {{ bcc }}
diff --git a/src/paperless_tika/mail_template/output.css b/src/paperless_tika/mail_template/output.css
index ea34ab3e6..8b05e953b 100644
--- a/src/paperless_tika/mail_template/output.css
+++ b/src/paperless_tika/mail_template/output.css
@@ -696,7 +696,7 @@ Ensure the default browser behavior of the `hidden` attribute.
}
.auto-cols-fr {
- grid-auto-columns: minmax(0, 1fr);
+ grid-auto-columns: minmax();
}
.auto-cols-max {
@@ -705,23 +705,23 @@ Ensure the default browser behavior of the `hidden` attribute.
}
.grid-cols-5 {
- grid-template-columns: repeat(5, minmax(0, 1fr));
+ grid-template-columns: repeat(5, minmax());
}
.grid-cols-7 {
- grid-template-columns: repeat(7, minmax(0, 1fr));
+ grid-template-columns: repeat(7, minmax());
}
.grid-cols-12 {
- grid-template-columns: repeat(12, minmax(0, 1fr));
+ grid-template-columns: repeat(12, minmax());
}
.grid-rows-4 {
- grid-template-rows: repeat(4, minmax(0, 1fr));
+ grid-template-rows: repeat(4, minmax());
}
.grid-rows-5 {
- grid-template-rows: repeat(5, minmax(0, 1fr));
+ grid-template-rows: repeat(5, minmax());
}
.flex-col {
diff --git a/src/paperless_tika/parsers.py b/src/paperless_tika/parsers.py
index 9cea35cf9..bc6c7aef9 100644
--- a/src/paperless_tika/parsers.py
+++ b/src/paperless_tika/parsers.py
@@ -215,7 +215,7 @@ class TikaDocumentParserEml(DocumentParser):
def generate_pdf(self, document_path):
def clean_html(text: str):
if isinstance(text, list):
- text = ", ".join([str(e) for e in text])
+ text = "\n".join([str(e) for e in text])
if type(text) != str:
text = str(text)
text = text.replace("&", "&")
@@ -236,9 +236,20 @@ class TikaDocumentParserEml(DocumentParser):
data = {}
data["subject"] = clean_html(parsed["metadata"].get("dc:subject", ""))
+ if data["subject"] != "":
+ data["subject_label"] = "Subject"
data["from"] = clean_html(parsed["metadata"].get("Message-From", ""))
+ if data["from"] != "":
+ data["from_label"] = "From"
data["to"] = clean_html(parsed["metadata"].get("Message-To", ""))
+ if data["to"] != "":
+ data["to_label"] = "To"
data["cc"] = clean_html(parsed["metadata"].get("Message-CC", ""))
+ if data["cc"] != "":
+ data["cc_label"] = "CC"
+ data["bcc"] = clean_html(parsed["metadata"].get("Message-BCC", ""))
+ if data["bcc"] != "":
+ data["bcc_label"] = "BCC"
data["date"] = clean_html(parsed["metadata"].get("dcterms:created", ""))
content = parsed.get("content", "").strip()
@@ -273,9 +284,22 @@ class TikaDocumentParserEml(DocumentParser):
),
}
headers = {}
-
+ data = {
+ "marginTop": "0",
+ "marginBottom": "0",
+ "marginLeft": "0",
+ "marginRight": "0",
+ "paperWidth": "8.27",
+ "paperHeight": "11.7",
+ "scale": "1.0",
+ }
try:
- response = requests.post(url, files=files, headers=headers)
+ response = requests.post(
+ url,
+ files=files,
+ headers=headers,
+ data=data,
+ )
response.raise_for_status() # ensure we notice bad responses
except Exception as err:
raise ParseError(f"Error while converting document to PDF: {err}")