此脚本使用 CDO 发送测试电子邮件消息。
Visual Basic
Set objEmail = CreateObject(“CDO.Message”)
set objConf = CreateObject(“CDO.Configuration”)
Set objFlds = objConf.Fields
With objFlds
.Item(“http://schemas.microsoft.com/cdo/configuration/sendusing”) = 2
.Item(“http://schemas.microsoft.com/cdo/configuration/smtpserver”) = “XXX-ex100″
.Item(“http://schemas.microsoft.com/cdo/configuration/smtpserverport”) = 25
‘.Item(“http://schemas.microsoft.com/cdo/configuration/smtpauthenticate”) = cdoBasic
.Update
End With
Set objEmail.Configuration = objConf
objEmail.From = “ron.nixon@fastmail.us”
objEmail.To = “users.name@abc.com”
objEmail.Subject = “All done!”
objEmail.Textbody = “…here you go…”
objEmail.Addattachment “C:\directory name of file\filename”
objEmail.Send
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
还没有评论