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

  • SEARCH
  • Home
  • 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 7499539
In Process

The Archive Base Latest Questions

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

I have an application that i’m using to send an email that contains an

  • 0

I have an application that i’m using to send an email that contains an entire table and i don’t know how to get that dynamic data there. I’M SURE i have to use a for loop but i don’t know how to word it to get the rows of data.

Here is what i have so far:

    msg.To.Add(selected);//put in custom account info
        msg.Subject = "Message Subject";
        msg.IsBodyHtml = true;
        msg.Body = "<html>"+
        "<body>"+
        "<center>"+
        "<h2>Your entire inventory:</h2>"+
        "<table>"+
        "<th>Product</th>"+
        //for each loop

        "<th>Quantity</th>"+
        //for each loop
            "</body>"+
            "</html>";

Let me know if you need any other code.

  • 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-29T19:51:23+00:00Added an answer on May 29, 2026 at 7:51 pm

    Personally, I would avoid building HTML using string concatenation. Not only can it make your code awkward, but you also risk accidental mistakes in encoding your output. One alternative is to use LINQ to XML to build your HTML. The code would look something like this:

    var html = new XDocument(
        new XElement("html",
            new XElement("body",
                new XElement("h2", "Your entire inventory:"),
                new XElement("table",
                    new XElement("tr",
                        new XElement("th", "Product"),
                        from item in orders
                        select new XElement("td", item.ProductName)),
                    new XElement("tr",
                        new XElement("th", "Quantity"),
                        from item in orders
                        select new XElement("td", item.Quantity))))));
    
    msg.Body = html.ToString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have application that has to check multiple data from user table, in order
I have an application that will form a packet and send the packet data
I have an application that reads a CSV file with piles of data rows.
I have network application that handles about 40k msg/sec written using netty framework and
I have an application that allows, using an abstract class, people to write their
I have an application that interacts with another application using SendMessage (among other things).
I have application that fetches email configuration settings such as host (SMTP Server name),
I have an application that contains two Activities with <intent-filter> <action android:name=android.intent.action.MAIN/> <category android:name=android.intent.category.LAUNCHER/>
I have an application that uses an aps:GridView. The GridView is populated using a
I have an application that contains Menu and sub menus. I have attached Appliocation

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.