using System.Net.Mail;
MailAddress from = new MailAddress("[보내는사람 이메일 주소]", "[이름]");
MailAddress to = new MailAddress("[받는사람 이메일 주소]", "[이름]");
MailMessage message = new MailMessage(from, to);
message.Subject = "[ 이메일 제목 ]";
message.IsBodyHtml = true; // Html 형식으로 보냄설정.
message.Body = "[이메일 내용]";
SmtpClient smtp = new SmtpClient("[메일서버]");
smtp.UseDefaultCredentials = false; // 시스템에 설정된 인증 정보를 사용하지 않는다.
smtp.EnableSsl = false; // SSL을 사용한다.
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Credentials = new System.Net.NetworkCredential("[이메일서버 아이디]", "[이메일서버 패스워드]");
'Programming > C#' 카테고리의 다른 글
[C#] 관리자모드로 프로그램 실행하기 (0) | 2019.07.16 |
---|---|
[C#] 확장메소드 (0) | 2017.07.20 |
[C#] Code 에서 Debuging mode 확인하기 (0) | 2012.10.30 |
[C#] 네트워크 연결 확인하기(System.Net) (0) | 2012.10.25 |
[C#] Stream string으로 변환하기 (0) | 2012.07.31 |
[C#] string 문자열 MemoryStream으로 변환 하기 (0) | 2012.07.31 |
[C#] Excel Template 가져오기 (0) | 2012.02.03 |
[C#] Invoke (0) | 2010.06.21 |
[C#] 크로스 스레드와 Control.Invoke (0) | 2010.06.21 |
[C#] [스크랩] Invoke , BeginInvoke, MethodInvoker (0) | 2010.06.09 |