|
分類:[VB.NET/VB2005 以降]
開発環境:visual studio2015、.NETFramework,Version=v4.5.2 使用言語:VB
お世話になります。きょんと申します。
現在visual studio2015で、メール送信をしないで、「下書き」フォルダに保存するプログラムを作成しています。 下記プログラムを実行すると、メールが送信され、下書きに保存されません。
下記ソースをどのように修正すれば、下書きに保存されるようになるでしょうか。
※下書きフォルダは、メールソフト(outlook)内で確認できるフォルダのことです。
Private Sub MailTest()
Dim oMail As New SmtpMail("TryIt") Dim oSmtp As New SmtpClient() Dim oServer As New SmtpServer("test.com")
oMail.From = "test@test.co.jp" oMail.To = "test@test.co.jp" oMail.Subject = "メール送信テスト" oMail.TextBody = "メール送信テストです" oMail.AddAttachment("C:\Temp\メールテスト.txt")
oServer.Protocol = ServerProtocol.ExchangeEWS oServer.User = "test" oServer.Password = "test_password" oServer.ConnectType = SmtpConnectType.ConnectSSLAuto oServer.Alias = "test" oServer.Drafts = "下書き"
Try oSmtp.SendMail(oServer, oMail)
Catch ex As Exception Throw New Exception(ex.Message) End Try
|