Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7688159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:51:23+00:00 2026-05-31T19:51:23+00:00

I need to be able to pass HTML data into Outlook like this: MailMessage

  • 0

I need to be able to pass HTML data into Outlook like this:

MailMessage message = new MailMessage();
message.Body = myBody;

Initially, I thought I could pass plain text to it and use PadLeft like this:

somestring.PadLeft(100);

but it did not align everything properly because even though ||||| and MMMMM are both only 5 characters in length, they physically on the screen take up more space.

My solution is to convert data that is in my datatable into an HTML table and then pass it into Outlook.

  1. how do I convert a datatable into an html table?
  2. is there a better solution to my issue?
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T19:51:24+00:00Added an answer on May 31, 2026 at 7:51 pm

    Loop over your DataTable, and build up the html string. IE:

    DataTable dt = new DataTable();
    
    dt.Columns.Add("col1");
    dt.Columns.Add("col2");
    dt.Columns.Add("col3");
    dt.Rows.Add(new object[] { "a", "b", "c" });
    dt.Rows.Add(new object[] { "d", "e", "f" });
    
    string tab = "\t";
    
    StringBuilder sb = new StringBuilder();
    
    sb.AppendLine("<html>");
    sb.AppendLine(tab + "<body>");
    sb.AppendLine(tab + tab + "<table>");
    
    // headers.
    sb.Append(tab + tab + tab + "<tr>");
    
    foreach (DataColumn dc in dt.Columns)
    {        
        sb.AppendFormat("<td>{0}</td>", dc.ColumnName);        
    }
    
    sb.AppendLine("</tr>");
    
    // data rows
    foreach (DataRow dr in dt.Rows)
    {
        sb.Append(tab + tab + tab + "<tr>");
    
        foreach (DataColumn dc in dt.Columns)
        {
            string cellValue = dr[dc] != null ? dr[dc].ToString() : "";
            sb.AppendFormat("<td>{0}</td>", cellValue);
        }
    
        sb.AppendLine("</tr>");
    }
    
    sb.AppendLine(tab + tab + "</table>");
    sb.AppendLine(tab + "</body>");
    sb.AppendLine("</html>");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on an algorithm, and I need to be able to pass
Need to be able to pull Magento products into an external template. Need to
This may seem like an odd one, but I want to be able to
I'm having a problem accessing a Django Form POST data. I need to pass
I need to be able to pass a typename as a parameter: int X
I need to be able to pass int value representing fd (pipe fd) to
I basically need to be able to pass through a $q that is a
I have a TCP client-server setup where I need to be able to pass
Users of the website need to able to store images in their area ,
I need to be able to create basic MS Project items (tasks, projects, resources,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.