sol12-5.vbs
来自「Apress - Managing Enterprise Systems Wit」· VBS 代码 · 共 7 行
VBS
7 行
Dim objMessage
Dim objSession Set objSession = CreateObject("MAPI.Session")
objSession.Logon
'create a new message, setting the subject to Hello There
Set objMessage = objSession.Outbox.Messages.Add("Hello There")
objMessage.Text = "this is the body of the message"
' perform operations and log off
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?