sol12-26.vbs
来自「Apress - Managing Enterprise Systems Wit」· VBS 代码 · 共 12 行
VBS
12 行
' create a session then log on
Set objSession = CreateObject("MAPI.Session")
' change the parameters to valid values for your configuration
objSession.Logon "Valid Profile"
'get a reference to the Recipient
Set objList = objSession.AddressLists("Personal Address Book")
Set objAddressEntries = objList.AddressEntries
'add an Internet mail address
Set objAddressEntry = objAddressEntries.Add("SMTP", "Fred Smith", "freds@x.com")
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?