1

我在 Excel 中编写了一个 VB 宏,它使用 MS Outlook 创建和发送电子邮件。

所以我创建一个Outlook.Application,然后创建一个Outlook.Application.CreateItem(olMailItem).

这一切都非常有效:) 但现在我意识到我想要部署它的机器没有 Outlook,并且获得许可的 Outlook 副本不是一种选择。那么我怎样才能让它通过 Thunderbird 发送电子邮件呢?

我可以使用这个启动应用程序:

Dim RetVal
RetVal = Shell("C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe", 1)

但我不确定如何为它创建一个邮件项目。它不需要专门使用 Thunderbird,我只是选择它,因为它是一个免费的邮件客户端。

4

1 回答 1

1

CDO不是一种选择吗?http://www.rondebruin.nl/win/s1/cdo.htm - 悉达多溃败

Sub CDO_Mail_Small_Text()
    Dim iMsg As Object
    Dim iConf As Object
    Dim strbody As String
    '    Dim Flds As Variant

    Set iMsg = CreateObject("CDO.Message")
    Set iConf = CreateObject("CDO.Configuration")

    '    iConf.Load -1    ' CDO Source Defaults
    '    Set Flds = iConf.Fields
    '    With Flds
    '        .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    '        .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") _
    '                       = "Fill in your SMTP server here"
    '        .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
    '        .Update
    '    End With

    strbody = "Hi there" & vbNewLine & vbNewLine & _
              "This is line 1" & vbNewLine & _
              "This is line 2" & vbNewLine & _
              "This is line 3" & vbNewLine & _
              "This is line 4"

    With iMsg
        Set .Configuration = iConf
        .To = ""
        .CC = ""
        .BCC = ""
        .From = ""
        .Subject = "New figures"
        .TextBody = strbody
        .Send
    End With

End Sub 

注意:如果您收到此错误:传输无法连接到服务器,请尝试将 SMTP 端口从 25 更改为 465

于 2015-03-02T01:12:09.587 回答