How do I create a web-based email client in .NET?

I am creating a web email client in .NET using a third party component.

I just want to make sure I have the right idea:

  • First I will pull emails with POP
  • Then I will parse every single message I received from the POP using the right MIME component?

My third party options are Nsoftware, Quiksoft, or Dart.

I'm looking at Nsoftware right now.

0


source to share


2 answers


Last year I tried to create a similar project but never got around to it. There were so many solid out-of-the-box solutions for this that I took the advice "Programming is hard. Let's go shopping!"



+2


source


Using the POP and MIME software component, you are correct. You must use the POP component to extract your message and then use the MIME component to decode the message into its constituent parts. / n provides examples with their IP * Works product using POP and MIME components. If you need more help, their support team ranks at the top.



-1


source







All Articles