Contact Files

This commit is contained in:
2026-05-24 16:07:03 -04:00
parent 9784de43b3
commit 55650b3aa3
+60 -20
View File
@@ -33,27 +33,33 @@ def body_template(html_content):
<html> <html>
<head></head> <head></head>
<body style="font-size:14px;line-height:1.5;"> <body style="font-size:14px;line-height:1.5;">
<table width="550px" border="0" cellpadding="3" cellspacing="3" background-color="#F0F8FF" style="font-size:16px">
<tr>
<td style="text-align:center">
<img style="width:150px; height:auto;" src="https://www.mermsemr.com/images/logo-pink.png" />
</td>
</tr>
<tr>
<td>
{html_content}
</td>
</tr>
<tr> <div style="
<td> font-family: 'Public Sans', helvetica, arial, sans-serif;
For any support<br> max-width: 480px; margin: 0 auto; padding: 16px;
Reach Out<br> color: #1b1b1b; font-size: 16px; line-height: 1.5;
support@mermsemr.com<br> background-color: #ffffff;">
https://www.mermsemr.com/
</td> <div style="text-align: center; padding: 16px 0 24px 0;">
</tr> <img src="https://www.mermsemr.com/images/logo-pink.png"
</table> alt="MermsEmr"
height="40" />
</div>
<div style="border: 1px solid #dfe1e2; border-radius: 8px; padding: 20px 24px; margin-bottom: 24px;">
<div style="font-weight: 700; font-size: 18px; margin-bottom: 16px;">
{html_content}
</div>
</div>
<p style="margin: 0 0 16px 0;">
For any support<br>
Reach Out<br>
support@mermsemr.com<br>
https://www.mermsemr.com/
</p>
</div>
</body> </body>
</html> </html>
""" """
@@ -93,3 +99,37 @@ def alert_template(html_content):
</html> </html>
""" """
return html_body return html_body
# < table
# width = "550px"
# border = "0"
# cellpadding = "3"
# cellspacing = "3"
# background - color = "#F0F8FF"
# style = "font-size:16px" >
# < tr >
# < td
# style = "text-align:center" >
# < img
# style = "width:150px; height:auto;"
# src = "https://www.mermsemr.com/images/logo-pink.png" / >
# < / td >
# < / tr >
# < tr >
# < td >
# {html_content}
# < / td >
# < / tr >
#
# < tr >
# < td >
# For
# any
# support < br >
# Reach
# Out < br >
# support @ mermsemr.com < br >
# https: // www.mermsemr.com /
# < / td >
# < / tr >
# < / table >