import emails from webserver
Tech-Archive recommends: Fix windows errors by optimizing your registry
Hi
I am trying to import emails from a webserver. This code retrieves only 1
email. I also would like to save them into an xml file?
thanks N
Request =
(System.Net.HttpWebRequest)HttpWebRequest.Create("
http://email-server/Exchange/account/Inbox/EmailSubject.EML");
Request.Credentials = CredentialCache.DefaultCredentials;
Request.Method = "GET";
Request.Headers.Add("Translate", "f");
Response = (HttpWebResponse)Request.GetResponse();
ResponseStream = Response.GetResponseStream();
sr = new StreamReader(ResponseStream, Encoding.UTF8);
s = sr.ReadToEnd();
Console.WriteLine(s);
.
Relevant Pages
- Re: Outlook 2000 Inbox appears empty but isnt!
... Many Thanks for your advice/prompt response. ... He suggested that the "Outlook Today" ... >the (insert latest virus name here) virus, ... No summary of emails listed!). ... (microsoft.public.outlook) - Re: Mail DoS from Bellsouth
... > routes to take if you can't get any response. ... > emails back to Bellsouth, ... > a dummy MTA to just suck in this junk and dump ... big advocate of taking responsiblity for what goes on in your network... ... (comp.os.linux.security) - back to access after a long time
... we are in danger of losing our Sent database from Lotus ... take those emails (this is going to be so time consuming.. ... notes field will pop up the text response we would then copy and paste ... I want to click on that text and in the notes field pops up: ... (comp.databases.ms-access) - eBay threat of legal action. (Here we go, again)
... My latest email to eBay in response to their fifth or sixth threat to set ... You do not sign your emails. ... Some considerable time later you deducted a commission fee. ... (uk.legal) - Re: Dealers
... If they can't be bothered to reply to my emails they shouldn't be in business. ... Bricks and mortar businesses trying to trade online but not answering emails. ... I emailed my nearest dealer, no response. ... Emailed a dealer in Windsor and got a response half an hour later. ... (uk.radio.amateur) |
|