I'm developing a email manager application(like outlook) in C# and I want to do a reply function, but how I can get the email address of the user that sent the email that will be replyed? Thanks.

link|improve this question

What are you using to access the email object? – Raj More Nov 4 '09 at 16:39
It's a console application, it's only for personal use. – Nathan Campos Nov 4 '09 at 16:42
feedback

2 Answers

up vote 3 down vote accepted

Is this what you're looking for?

System.Web.Mail.MailMessage receivedMessage = GetMail();
string replyTo = receivedMessage.From;
link|improve this answer
Thanks very much Beaner! – Nathan Campos Nov 4 '09 at 16:43
feedback

I don't know how you are parsing the message you are replying to, but the information you are looking for is part of the e-mail headers. Generally there will be a Reply-to header, with the e-mail address you should sent any replies to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.