Search results for query: *

  1. T

    Extract outlook email attachment files and save in sql

    I'm trying to save the Outlook attachment file email and save in sql. I tried this following code and it only saved a numerical values using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.SqlClient; using...
  2. T

    Save outlook sent mail folder in sql

    I'm trying to save out sent mail folder data in sql however I'm getting cast com object of type error/ I tried to online repair the Microsoft app and nothing happens. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using...
  3. T

    Save Outlook email Information to SQL Server

    I actually solved it I parse outlook inbox data to sql however what I'm working is to get the sent mail data but I'm getting this error. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reflection; // to use...
  4. T

    Save Outlook email Information to SQL Server

    That's the requirement using a program to parse data from Outlook to sql
  5. T

    Save Outlook email Information to SQL Server

    Hello @Skydiver thank for the help, I already resolve my problem the inbound outlook email and save on SQL however I'm trying to create an email reply table that retrieve email reply data to SQL, Any ideas?
  6. T

    Save Outlook email Information to SQL Server

    And you're right the condition is false
  7. T

    Save Outlook email Information to SQL Server

    I get the value of sender name
  8. T

    Save Outlook email Information to SQL Server

    No I'm not making to the line 41 and that's the problem, I get the value of SenderName on Outlook
  9. T

    Save Outlook email Information to SQL Server

    How many times I tried, it passed through the Send but doesn't really retrieving the data in sql using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reflection; // to use Missing.Value //using...
  10. T

    Save Outlook email Information to SQL Server

    Yes no parsing of data. I tried to debug and its not passing through the sql connection I tried this code using GetDefaultFolder using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Reflection; // to use Missing.Value...
  11. T

    Save Outlook email Information to SQL Server

    I tried to used the main Folder Inbox no error but still not working
  12. T

    Save Outlook email Information to SQL Server

    I'm trying to save inbound Outlook mail data to sql server however I'm getting in error in System.Runtime.InteropServices.COMException: 'The attempted operation failed. An object could not be found.' What did I missed Note: RetrieveMail is exist in mailbox using System; using...
  13. T

    How to save email reply on sql

    They wanted to apply also in the existing programing for email notifications and this program will be the retrieving the data
  14. T

    How to save email reply on sql

    Thanks for the help, I'm trying to access a selective email messages and trying to save the reply on sql
  15. T

    How to save email reply on sql

    I'm trying to create an email reply on Outlook and save the email details (Sender, To, CC, Subject, Body and Attachment) on Sql Server. Can you please guide me. Thank you! More Details: After receiving an email the user will reply to an email after replying the user data (Sender, To, CC...
Back
Top Bottom