Hi everyone,
I am sending an email using command_sys.Mail
in a UTIL file, and I want to format the email body using HTML and inline CSS. My email body includes tables, headings, and styles for better readability.
Hereโs what I need clarification on:
- Does
command_sys.Mail
support HTML content in thetext_
parameter? - If yes, does it allow inline CSS styling (e.g.,
<style>
tags or inline styles like<p style="color:red;">
)? - Are there any IFS configurations that need to be enabled for HTML rendering in emails?
Example of the email content I am sending:
<html>
<head>
<style>
body { font-family: Arial, sans-serif; color: #333; }
h2 { color: #007BFF; border-bottom: 2px solid #ccc; padding-bottom: 5px; }
</style>
</head>
<body>
<h2>Audit Report</h2>
<p style="color: red;">This is a test email with formatting.</p>
</body>
</html>
Please note that, I am going to use util file for this