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();