GrapeCity Secure Mail for .NET 4.0J
SMTPサーバーへ接続する

POPサーバーへ接続するには、Sessionクラスの各種プロパティを設定します。

  • サンプルコードの先頭にある名前空間の参照文(Visual BasicではImports、C#ではusing)は、ソースファイルの先頭に記述してください。
  • 本トピック以降のサンプルコードでは、サーバー接続設定に関するコードの記載を省略している場合があります。
  • 実際の動作では、サーバー接続設定の後、Sendメソッドなどを実行したタイミングで、SMTPサーバーとの通信処理が開始されます。
Imports Dart.Mail
Imports Dart.Mail.Smtp
    
' 接続するSMTPサーバーとポート番号を指定します。
Smtp1.Session.RemoteEndPoint = New Dart.Mail.IPEndPoint("smtp.myMailServer.com", Smtp.GetDefaultPort(Smtp1.Session))
    
' 認証が必要な場合には、ユーザー名とパスワードも設定します。
Smtp1.Session.Username = "myUsername"
Smtp1.Session.Password = "myPassword"
    
' 認証方式を設定します。
Smtp1.Session.Authentication = Authentication.Login
    
' メールを送信します。
Smtp1.Send("to@test.com", "from@test.com", "メールの件名", "メールの本文")
    
' SMTPサーバーとの接続を閉じます。
Smtp1.Close()
using Dart.Mail;
using Dart.Mail.Smtp;
    
// 接続するSMTPサーバーとポート番号を指定します。
smtp1.Session.RemoteEndPoint = new Dart.Mail.IPEndPoint("smtp.myMailServer.com", Smtp.GetDefaultPort(Smtp1.Session));
    
// 認証が必要な場合には、ユーザー名とパスワードも設定します。
smtp1.Session.Username = "myUsername";
smtp1.Session.Password = "myPassword";
    
// 認証方式を設定します。
smtp1.Session.Authentication = Authentication.Login;
    
// メールを送信します。
smtp1.Send("to@test.com", "from@test.com", "メールの件名", "メールの本文");
    
// SMTPサーバーとの接続を閉じます。
smtp1.Close();

 

 


© 2003, GrapeCity inc. All rights reserved.