Click here to Skip to main content
15,891,473 members
Please Sign up or sign in to vote.
2.50/5 (2 votes)
I am fetching NotesDocument from .nsf file of Lotus notes. I want to save NotesDocument to .eml file using c# or vb.net. Is it possible?
Posted
Comments
ZurdoDev 12-Jun-14 13:45pm    
Probably. But it is not too likely that someone who frequents this forum has done it so I would suggest searching google first.
[no name] 13-Jun-14 1:48am    
Next time, start from here here, here or here.

eml is just a text file that conforms to RFC 2822. You can just write it manually. Like:

To: you@hotmail.com
From: me@gmail.com
Subject: hi
X-Other-Headers: go here

Hello, world

Remember to use LF not CRLF
 
Share this answer
 
The object in which we are going to write To,From,Subject and other details is it the MailMessage or NotesDocument or something else? and How can we save it to the file system in .eml format?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900