WebMailクラス WebMailコンストラクタ
WebMailクラスの新しいインスタンスを初期化します。
使用法
Dim instance As WebMail = New WebMail()
Dim host As String		'SMTPホスト名
Dim username As String	'ユーザー名
Dim password As String	'パスワード

Dim instance As WebMail = New WebMail(host, username, password)
使用例
'WebMailクラス WebMailコンストラクタ

Public Class AddIn

	Private wm As WebMail

	Public Sub New()
		wm = New WebMail("smtp.sample.jp", "sampleuser", "passxxx")
	End Sub

End Class