Skip to main content
Question

Does HTML and CSS Formatting Work in Emails Sent via command_sys.Mail?

  • March 24, 2025
  • 1 reply
  • 13 views

Forum|alt.badge.img+3
  • Do Gooder (Partner)
  • 6 replies

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 the text_ 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

1 reply

Forum|alt.badge.img+12
  • Hero (Customer)
  • 261 replies
  • March 25, 2025

The answer to all your questions is yes, but whether the mail is going to be sent as plain text or HTML depends on your mail sender setup, not based on the command_sys.mail procedure.

 

 

 

If the total text with all the html and css styling is very long, youโ€™d probably want to use the command_sys method variant that accepts text_ as CLOB rather than text, too.

 

Iโ€™ve not done TOO MUCH CSS so obviously youโ€™d need to text it, but Iโ€™ve done โ€œsomeโ€ and it does work.

 

Example of a mail I send:

 

 

 

 


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings