SmtpMail.Send 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이메일 메시지를 보냅니다. 권장되는 대체 항목: System.Net.Mail.
오버로드
Send(MailMessage) |
MailMessage 클래스의 속성에 제공된 인수를 사용하여 이메일 메시지를 보냅니다. 권장되는 대체 항목: System.Net.Mail. |
Send(String, String, String, String) |
지정된 대상 매개 변수를 사용하여 이메일 메시지를 보냅니다. 권장되는 대체 항목: System.Net.Mail. |
Send(MailMessage)
MailMessage 클래스의 속성에 제공된 인수를 사용하여 이메일 메시지를 보냅니다. 권장되는 대체 항목: System.Net.Mail.
public:
static void Send(System::Web::Mail::MailMessage ^ message);
public static void Send (System.Web.Mail.MailMessage message);
static member Send : System.Web.Mail.MailMessage -> unit
Public Shared Sub Send (message As MailMessage)
매개 변수
- message
- MailMessage
보낼 MailMessage입니다.
예외
메일을 보낼 수 없는 경우
Send(MailMessage) 메서드에 Microsoft Windows NT, Windows 2000 또는 Windows XP 운영 체제가 필요한 경우
예제
다음 예제에서는 사용 하는 방법을 보여 줍니다 MailMessage 사용 하 여 전자 메일 메시지를 보낼 SmtpMail합니다.
MailMessage myMail = new MailMessage();
myMail.From = "from@microsoft.com";
myMail.To = "to@microsoft.com";
myMail.Subject = "UtilMailMessage001";
myMail.Priority = MailPriority.Low;
myMail.BodyFormat = MailFormat.Html;
myMail.Body = "<html><body>UtilMailMessage001 - success</body></html>";
MailAttachment myAttachment = new MailAttachment("c:\attach\attach1.txt", MailEncoding.Base64);
myMail.Attachments.Add(myAttachment);
SmtpMail.SmtpServer = "MyMailServer";
SmtpMail.Send(myMail);
Dim myMail As New MailMessage()
myMail.From = "from@microsoft.com"
myMail.To = "to@microsoft.com"
myMail.Subject = "UtilMailMessage001"
myMail.Priority = MailPriority.Low
myMail.BodyFormat = MailFormat.Html
myMail.Body = "<html><body>UtilMailMessage001 - success</body></html>"
Dim myAttachment As New MailAttachment("c:\attach\attach1.txt", MailEncoding.Base64)
myMail.Attachments.Add(myAttachment)
SmtpMail.SmtpServer = "MyMailServer"
SmtpMail.Send(myMail)
적용 대상
Send(String, String, String, String)
지정된 대상 매개 변수를 사용하여 이메일 메시지를 보냅니다. 권장되는 대체 항목: System.Net.Mail.
public:
static void Send(System::String ^ from, System::String ^ to, System::String ^ subject, System::String ^ messageText);
public static void Send (string from, string to, string subject, string messageText);
static member Send : string * string * string * string -> unit
Public Shared Sub Send (from As String, to As String, subject As String, messageText As String)
매개 변수
- from
- String
이메일 보낸 사람의 주소입니다.
- to
- String
이메일 받는 사람의 주소입니다.
- subject
- String
이메일 메시지의 제목 줄입니다.
- messageText
- String
이메일 메시지의 본문입니다.
예외
Send(String, String, String, String) 메서드에 Microsoft Windows NT, Windows 2000 또는 Windows XP 운영 체제가 필요한 경우
예제
다음 예제에 사용 하 여 간단한 메시지를 보내는 방법을 보여 줍니다 SmtpMail합니다.
string from = "from@microsoft.com";
string to = "to@microsoft.com";
string subject = "UtilMailMessage001";
string body = "UtilMailMessage001 - success";
SmtpMail.SmtpServer = "MyMailServer";
SmtpMail.Send(from, to, subject, body);
Dim from As String = "from@microsoft.com"
Dim mailto As String = "to@microsoft.com"
Dim subject As String = "UtilMailMessage001"
Dim body As String = "UtilMailMessage001 - success"
SmtpMail.SmtpServer = "MyMailServer"
SmtpMail.Send(from, mailto, subject, body)