fix: support plain text emails

This commit is contained in:
Zichao Lin 2024-07-24 11:55:17 +08:00
parent 8e408554d5
commit 8a06d7b7e8
Signed by: earthjasonlin
GPG Key ID: 406D9913DE2E42FB
2 changed files with 88 additions and 75 deletions

14
main.py

@ -10,6 +10,7 @@ import datetime
import logging import logging
import socks import socks
import socket import socket
import re
from email.header import decode_header from email.header import decode_header
@ -20,14 +21,14 @@ def decode_mime_words(s):
for fragment, encoding in decoded_fragments for fragment, encoding in decoded_fragments
) )
def add_mask(original_msg, content): def add_mask(original_msg, content, is_html):
original_subject = decode_mime_words(original_msg['Subject']) original_subject = decode_mime_words(original_msg['Subject'])
from_name, from_address = parseaddr(original_msg['From']) from_name, from_address = parseaddr(original_msg['From'])
from_name = decode_mime_words(from_name) from_name = decode_mime_words(from_name)
to_name, to_address = parseaddr(original_msg['To']) to_name, to_address = parseaddr(original_msg['To'])
to_name = decode_mime_words(to_name) to_name = decode_mime_words(to_name)
header = f"""<table align=center style="background:#3d3d3d;padding:8px 16px;margin-top:30px;margin-bottom:30px;width:96%;border-radius:6px;max-width:1200px"width=100% bgcolor=#3D3D3D><tr><td style=font-size:xx-large;font-weight:bolder;color:#fff width=50% align=left>Forwarded Email<td style=color:#fff;text-align:right width=50% align=right><p>From: {from_name} &lt;{from_address}&gt;<p>To: {to_name} &lt;{to_address}&gt;<p>Subject: {original_subject}</table><table align=center style=padding:0;max-width:850px width=100%><tr><td style=padding-left:15px;padding-right:15px width=100%>""" header = f"""<html><head></head><body><table style="background:#3d3d3d;padding:8px 16px;margin-top:30px;margin-bottom:30px;width:96%;border-radius:6px;max-width:1200px" width="100%" bgcolor="#3D3D3D" align="center"><tbody><tr><td width="50%" align="left" style="font-weight:bolder;color:#fff"><p style="font-size:x-large;margin-block:.2em">Forwarded Email</p>{'' if is_html else '<p style="font-size: medium; margin-block: 0.2em;">This email is plain text, it may have display issues</p>'}</td><td width="50%" align="right" style="color:#fff;text-align:right"><p style="margin-block:.1em">From: {from_name} &lt;{from_address}&gt;</p><p style="margin-block:.1em">To: {to_name} &lt;{to_address}&gt;</p><p style="margin-block:.1em">Subject: {original_subject}</p></td></tr></tbody></table><table style="padding:0;max-width:850px" width="100%" align="center"><tbody><tr><td style="padding-left:15px;padding-right:15px" width="100%">"""
footer = f"""<table align=center bgcolor=#3D3D3D style="background:#3d3d3d;padding:8px 16px;margin-top:30px;margin-bottom:30px;width:96%;border-radius:6px;max-width:1200px"width=100%><tr><td align=left style=color:#d22;font-size:xx-large;font-weight:bolder width=50%>FORWARDED<td align=right style=color:#fff;text-align:left width=50%><p style=font-size:x-large;font-weight:700;margin-block:0>Notice:<p style=margin-block:.1em>This is a automatically forwarded email, which means it may contains something bad.<p style=margin-block:.1em>You shouldn't reply directly to this email, it will never reach your destination!</table>""" footer = f"""</td></tr></tbody></table><table style="background:#3d3d3d;padding:8px 16px;margin-top:30px;margin-bottom:30px;width:96%;border-radius:6px;max-width:1200px" width="100%" bgcolor="#3D3D3D" align="center"><tbody><tr><td width="50%" align="left" style="color:#d22;font-size:xx-large;font-weight:bolder">FORWARDED</td><td width="50%" align="right" style="color:#fff;text-align:left"><p style="font-size:x-large;font-weight:700;margin-block:0">Notice:</p><p style="margin-block:.1em">&emsp;This is a automatically forwarded email, which means it may contains something bad.</p><p style="margin-block:.1em">&emsp;You shouldn't reply directly to this email, it will never reach your destination!</p></td></tr></tbody></table></body></html>"""
return header + content + footer return header + content + footer
def load_config(config_file='config.json'): def load_config(config_file='config.json'):
@ -133,7 +134,12 @@ def forward_emails(account_config, emails, logger):
logger.error(f"Failed to extract body from email {email_id}") logger.error(f"Failed to extract body from email {email_id}")
continue continue
html_content = add_mask(original_msg, body) is_html = bool(re.compile(r'<[^>]+>').search(body))
if not is_html:
body = body.replace('\n', '<br>')
html_content = add_mask(original_msg, body, is_html)
msg.attach(MIMEText(html_content, 'html')) msg.attach(MIMEText(html_content, 'html'))
for attachment in attachments: for attachment in attachments:

@ -1,4 +1,7 @@
<table <html>
<head></head>
<body>
<table
style=" style="
background: #3d3d3d; background: #3d3d3d;
padding: 8px 16px; padding: 8px 16px;
@ -13,25 +16,19 @@
align="center"> align="center">
<tbody> <tbody>
<tr> <tr>
<td <td width="50%" align="left" style="font-weight: bolder; color: #ffffff">
width="50%" <p style="font-size: x-large; margin-block: 0.2em">Forwarded Email</p>
align="left" <!-- <p style="font-size: medium; margin-block: 0.2em;">This email is plain text, it may have display issues</p> -->
style="
font-size: xx-large;
font-weight: bolder;
color: #ffffff;
">
Forwarded Email
</td> </td>
<td width="50%" align="right" style="color: #ffffff; text-align: right;"> <td width="50%" align="right" style="color: #ffffff; text-align: right">
<p>From: {from_name} &lt;{from_address}&gt;</p> <p style="margin-block: 0.1em">From: {from_name} &lt;{from_address}&gt;</p>
<p>To: {to_name} &lt;{to_address}&gt;</p> <p style="margin-block: 0.1em">To: {to_name} &lt;{to_address}&gt;</p>
<p>Subject: {original_subject}</p> <p style="margin-block: 0.1em">Subject: {original_subject}</p>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<table style="padding: 0; max-width: 850px" width="100%" align="center"> <table style="padding: 0; max-width: 850px" width="100%" align="center">
<tbody> <tbody>
<tr> <tr>
<td style="padding-left: 15px; padding-right: 15px" width="100%"> <td style="padding-left: 15px; padding-right: 15px" width="100%">
@ -39,8 +36,8 @@
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
<table <table
style=" style="
background: #3d3d3d; background: #3d3d3d;
padding: 8px 16px; padding: 8px 16px;
@ -61,11 +58,21 @@
style="color: #dd2222; font-size: xx-large; font-weight: bolder"> style="color: #dd2222; font-size: xx-large; font-weight: bolder">
FORWARDED FORWARDED
</td> </td>
<td width="50%" align="right" style="color: #ffffff; text-align: left;"> <td width="50%" align="right" style="color: #ffffff; text-align: left">
<p style="font-size: x-large; font-weight: bold; margin-block: 0;">Notice:</p> <p style="font-size: x-large; font-weight: bold; margin-block: 0">
<p style="margin-block: 0.1em;">&emsp;This is a automatically forwarded email, which means it may contains something bad.</p> Notice:
<p style="margin-block: 0.1em;">&emsp;You shouldn't reply directly to this email, it will never reach your destination!</p> </p>
<p style="margin-block: 0.1em">
&emsp;This is a automatically forwarded email, which means it may
contains something bad.
</p>
<p style="margin-block: 0.1em">
&emsp;You shouldn't reply directly to this email, it will never reach
your destination!
</p>
</td> </td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
</body>
</html>