本文介绍了一个简单的答案.我很难成为一个新手.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

希望您能提供帮助.

我正在使用此代码在Outlook中触发电子邮件.

I am using this code to fire off an Email in Outlook.


    Dim oOutL As New Outlook.Application
    Dim oMail As Outlook.MailItem

    oMail = oOutL.CreateItem(Outlook.OlItemType.olMailItem)
    oMail.UnRead = True
    oMail.To = "[email protected]"
    oMail.Subject = "TEST AUTOMATED EMAIL"
    oMail.HTMLBody = True
    oMail.Body = "This is a test Email"
    'oMail.Attachments.Add("attachement.html")
    oMail.Send()

推荐答案

kaymaf


这篇关于一个简单的答案.我很难成为一个新手.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 15:31