SmtpMail.Send メソッド

定義

電子メールを送信します。 推奨する代替 : 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)

適用対象