|
ms
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
How to extract email address from the letter in Outlook Express?How to extract email address from the letter in Outlook Express?
http://www.alvas.net - Audio tools for C# and VB.Net developers Hi,
>How to extract email address from the letter in Outlook Express? if you have the email saved as eml file then you canparse the header of the email and get the "From:" Header field. The file is plaintext and you can read it line by line until you get the "From:" Header and then it is just tokenizing the read line into tokens, e.g. String.Split or RegEx, its up to you,... Regards Kerem -- ----------------------- Beste Grüsse / Best regards / Votre bien devoue Kerem Gümrükcü Microsoft Live Space: http://kerem-g.spaces.live.com/ Latest Open-Source Projects: http://entwicklung.junetz.de ----------------------- "This reply is provided as is, without warranty express or implied." Ok, but I want to extract addresses from an entire folder ~ 10000 letters.
Does Outlok Exprees its API? http://www.alvas.net - Audio tools for C# and VB.Net developers Show quote "Kerem Gümrükcü" <kareem***@hotmail.com> wrote in message news:uDIat3PMIHA.5988@TK2MSFTNGP02.phx.gbl... > Hi, > >>How to extract email address from the letter in Outlook Express? > > if you have the email saved as eml file then you can > parse the header of the email and get the "From:" > Header field. The file is plaintext and you can read > it line by line until you get the "From:" Header and > then it is just tokenizing the read line into tokens, > e.g. String.Split or RegEx, its up to you,... > > Regards > > Kerem > > > -- > ----------------------- > Beste Grüsse / Best regards / Votre bien devoue > Kerem Gümrükcü > Microsoft Live Space: http://kerem-g.spaces.live.com/ > Latest Open-Source Projects: http://entwicklung.junetz.de > ----------------------- > "This reply is provided as is, without warranty express or implied." > Hi Alexander,
go here for some great example: http://www.codeproject.com/com/Outlook_Express_Messages.asp Regards Kerem -- ----------------------- Beste Grüsse / Best regards / Votre bien devoue Kerem Gümrükcü Microsoft Live Space: http://kerem-g.spaces.live.com/ Latest Open-Source Projects: http://entwicklung.junetz.de ----------------------- "This reply is provided as is, without warranty express or implied." Great! Thank You!
http://www.alvas.net - Audio tools for C# and VB.Net developers Show quote "Kerem Gümrükcü" <kareem***@hotmail.com> wrote in message news:eK9vkbRMIHA.4688@TK2MSFTNGP06.phx.gbl... > Hi Alexander, > > go here for some great example: > http://www.codeproject.com/com/Outlook_Express_Messages.asp > > > Regards > > Kerem > > -- > ----------------------- > Beste Grüsse / Best regards / Votre bien devoue > Kerem Gümrükcü > Microsoft Live Space: http://kerem-g.spaces.live.com/ > Latest Open-Source Projects: http://entwicklung.junetz.de > ----------------------- > "This reply is provided as is, without warranty express or implied." > |
|||||||||||||||||||||||