vote up 0 vote down star

Hello,

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.

flag

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

2 Answers

vote up 2 vote down check

Is this what you're looking for?

System.Web.Mail.MailMessage receivedMessage = GetMail();
string replyTo = receivedMessage.From;
link|flag
Thanks very much Beaner! – Nathan Campos Nov 4 at 16:43
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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