Search results for query: *

  1. R

    How do I save an outlook email to a text file

    Is there any way to save an outlook email to a text file using C#? Manually we do it by opening the mail and clicking SaveAs and then select file type as text only. But, this should be done through C# code. I can't find anything relevant on internet. Please help!
  2. R

    Question How To Format Table In The Body Of Mail

    Thank you. My work is done
  3. R

    Question How To Format Table In The Body Of Mail

    Now, I can make the table and fill the extracted data in rows, but unable to make column headers. Please help me with making column headers and making column headers Black in colour and Other extracted data in red. Table header information should be like this: Column 1 - MemoName Column 2 - Type...
  4. R

    Question How To Format Table In The Body Of Mail

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Data; using Excel = Microsoft.Office.Interop.Excel; using Outlook = Microsoft.Office.Interop.Outlook; namespace xlsm { class New { static...
  5. R

    Question How To Format Table In The Body Of Mail

    I am using C# for my problem. I have an Excel file which has many worksheets. From "Fisrt Sheet", I am looking for a character "x" which will be present in some cells of a specific column (occurence of "x" will be in one specific column only, in different cells of that column). I am looking for...
  6. R

    Question How to send generic list<T> in tabular form in body of mail via outlook

    I am using C# for my problem. I have an Excel file which has many worksheets. From "Fisrt Sheet", I am looking for a character "x" which will be present in some cells of a specific column (occurence of "x" will be in one specific column only, in different cells of that column). I am looking for...
  7. R

    Question How can I send generic list<T> in the body of outlook mail

    I am using C# for my problem. I have an Excel file which has many worksheets. From "Fisrt Sheet", I am looking for a character "x" which will be present in some cells of a specific column (occurence of "x" will be in one specific column only, in different cells of that column). I am looking for...
Back
Top Bottom