WindowsXP VB2005にてメールマガジンを送信するアプリを下記の様に作成して実行して いますが、受信に時間がかかっています。 他に手はないかと思い色々と調べていたら「TKMP.dll」というのがあるのを知りました。 こちらを使用した方が処理速度が上がったりするのでしょうか。 ご存知の方がいらっしゃいましたら教えてください。宜しくお願いします。 Imports System.Web.Mail 'MailMessageの作成 Dim msg As System.Web.Mail.MailMessage = New System.Web.Mail.MailMessage() 'New System.Net.Mail.MailMessage '送信者 msg.From = _FromAddress '宛先 msg.To = _ToAddress '件名 msg.Subject = "タイトル" '本文 msg.Body = _strBody '優先順位を「重要」にする msg.Priority = System.Net.Mail.MailPriority.High 'SMTPサーバーを指定する SmtpMail.SmtpServer = ClsConstants.SmtpServer 'メッセージを送信する SmtpMail.Send(msg)
↧