0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

vbsの作法 その96

Posted at

概要

vbsの作法、調べてみた。
mailを送信してみた。

環境

windows11
outlook2007

サンプルコード

Set olkApp = CreateObject("Outlook.Application")
Set objMsg = olkApp.CreateItem(0)
objMsg.bodyformat = 1
objMsg.To = "***@**.jp"
objMsg.Subject = "test"
objMsg.Body = "こんにちは。テストです。よろしく。"
objMsg.Send
msgbox "ok"

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?