Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to send an email?

I have some simple winform application. In some place in the flow the user have button that if he will press on it the application will send email to some know mail address.

How can i implement this ? How can i send the mail ?

Thanks for any help.

share|improve this question
3  
There are many threads in SO on this. Why dont you search before starting a thread? Thanks – zenwalker Aug 16 '11 at 9:22
1  

marked as duplicate by Grant Thomas, jgauffin, Adam Houldsworth, Bill the Lizard Aug 16 '11 at 12:27

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 5 down vote accepted

Look at the System.Net.Mail namespace and the SmtpClient class:-

http://msdn.microsoft.com/en-us/library/system.net.mail.smtpclient.aspx

share|improve this answer

FAQ site with good samples.

http://www.systemnetmail.com/

share|improve this answer

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