Convert XML in to nicely formatted HTML and Send via Email - VB.Net

Hursh 191 Reputation points
2024-10-07T05:11:11.1066667+00:00

I have created the following XML using vb.net in Windows form app.

How do I send this data via email in a nicely formatted HTML or Text format. It has 2 records in it.

<table border="1" border-spacing="5px"><tr><th>Level</th><th>Part Number</th><th>DocNumber</th><th>Category</th><th>Description</th><th>Date</th><th>Quantity</th><th>UnitCost</th><th>UOM</th></tr><tr><td style= ""padding-left:10px;"">Details :1</td><td style= ""padding-left:10px;"">480-00460-01</td><td style=""padding-left:10px;"">34302</td><td style=""padding-left:10px;""></td><td style=""padding-left:10px;"">45-1250 VT</td><td style=""padding-left:10px;"">9/15/2024 12:00:00 AM</td><td style=""padding-left:10px;"">20</td><td style=""padding-left:10px;"">139.624</td><td style=""padding-left:10px;"">EA</td></tr><tr><td style= ""padding-left:10px;"">Details :2</td><td style= ""padding-left:10px;"">480-00440-01</td><td style=""padding-left:10px;"">34330</td><td style=""padding-left:10px;""></td><td style=""padding-left:10px;"">1250 100</td><td style=""padding-left:10px;"">8/16/2024 12:00:00 AM</td><td style=""padding-left:10px;"">30</td><td style=""padding-left:10px;"">144.134</td><td style=""padding-left:10px;"">EA</td></tr>
VB
VB
An object-oriented programming language developed by Microsoft that is implemented on the .NET Framework. Previously known as Visual Basic .NET.
2,737 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Jiachen Li-MSFT 32,376 Reputation points Microsoft Vendor
    2024-10-07T08:10:17.35+00:00

    Hi @Hursh ,

    You can use the System.Net.Mail namespace.

    Set the mail.IsBodyHtml = True for HTML format email.

    Best Regards.

    Jiachen Li


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment". Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.