vbscript(WSH)でメール送信をしようとしています。 エラーは出ないのですが、メールが届きません。 下記の2つのvbsファイルを作ってますがどちらも同様の結果です。 どこがおかしいか見ていただけませんか? 1つめ Set oMsg = CreateObject("CDO.Message") oMsg.From = "from@example.com" oMsg.To = "to@example.com" oMsg.Subject = "Test " oMsg.Htmlbody = "<H1>本文です</H1>" oMsg.Send msgbox "send" 2つめ Const AttachFileName="ファイル名" Const MailFrom="from@example.com" Const MailTo="to@example.com" Const MailSubjec