.NET Framework
System.Net.Mail
수색…
비고
모든 첨부 파일이 스트림을 포함하고 가능한 한 빨리 이러한 스트림을 해제해야하기 때문에 System.Net.MailMessage를 처리하는 것이 중요합니다. using 문을 사용하면 Disposable 객체가 Exceptions의 경우에도 삭제됩니다.
MailMessage
다음은 첨부 파일이있는 메일 메시지 작성의 예입니다. 생성 후 우리는 SmtpClient
클래스의 도움으로이 메시지를 보냅니다. 기본 25 포트가 여기에 사용됩니다.
public class clsMail
{
private static bool SendMail(string mailfrom, List<string>replytos, List<string> mailtos, List<string> mailccs, List<string> mailbccs, string body, string subject, List<string> Attachment)
{
try
{
using(MailMessage MyMail = new MailMessage())
{
MyMail.From = new MailAddress(mailfrom);
foreach (string mailto in mailtos)
MyMail.To.Add(mailto);
if (replytos != null && replytos.Any())
{
foreach (string replyto in replytos)
MyMail.ReplyToList.Add(replyto);
}
if (mailccs != null && mailccs.Any())
{
foreach (string mailcc in mailccs)
MyMail.CC.Add(mailcc);
}
if (mailbccs != null && mailbccs.Any())
{
foreach (string mailbcc in mailbccs)
MyMail.Bcc.Add(mailbcc);
}
MyMail.Subject = subject;
MyMail.IsBodyHtml = true;
MyMail.Body = body;
MyMail.Priority = MailPriority.Normal;
if (Attachment != null && Attachment.Any())
{
System.Net.Mail.Attachment attachment;
foreach (var item in Attachment)
{
attachment = new System.Net.Mail.Attachment(item);
MyMail.Attachments.Add(attachment);
}
}
SmtpClient smtpMailObj = new SmtpClient();
smtpMailObj.Host = "your host";
smtpMailObj.Port = 25;
smtpMailObj.Credentials = new System.Net.NetworkCredential("uid", "pwd");
smtpMailObj.Send(MyMail);
return true;
}
}
catch
{
return false;
}
}
}
첨부 파일이있는 메일
MailMessage
는 SmtpClient
클래스를 사용하여 더 보낼 수있는 메일 메시지를 나타냅니다. 여러 첨부 파일 (파일)을 메일 메시지에 추가 할 수 있습니다.
using System.Net.Mail;
using(MailMessage myMail = new MailMessage())
{
Attachment attachment = new Attachment(path);
myMail.Attachments.Add(attachment);
// further processing to send the mail message
}
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow