从备用(非主要)Outlook(2013)帐户发送Excel(2013)的电子邮件。 (VBA)

时间:2013-01-14 16:06:11

标签: excel vba excel-vba outlook

我设法让Excel在Outlook中创建电子邮件,从备用帐户创建,而不是我的主要帐户。

麻烦的是,他们只是坐在第二个帐户的Outbox中,什么都不做。请注意,我可以手动从此帐户发送文件。

Dim MyOlApp As Object
Dim MyItem As Outlook.MailItem
Dim AttachName As String
Dim SendTo As String
Dim CCTo As String
Dim E, F, G As Integer
Dim Sys_Date As String
'Sys_Date = Format(Now(), "DD-MMM-YYYY")

F = Application.WorksheetFunction.CountA(Sheets("Sheet2").Range("A:A"))
'G = F


For E = 2 To F

Sheets("Sheet2").Select
AttachName = Cells(E, 2).Value
SendTo = Cells(E, 5).Value
CCTo = Cells(E, 6).Value

Set MyOlApp = CreateObject("Outlook.Application")
Set MyItem = MyOlApp.CreateItemFromTemplate("C:\localDocuments\2 - Reporting\1 - Guides + Sample Data etc\Email.oft")
MyItem.Display

On Error Resume Next
With MyItem
    Set .SendUsingAccount = MyOlApp.Session.Accounts.Item(2)
    .To = SendTo
    .CC = CCTo
    .BCC = ""
    .Subject = "Action required: " & AttachName
    'You can add other files also like this
    .Attachments.Add ("C:\localDocuments\2 - Reporting\Reports\" & AttachName & ".xlsx")
    .Display
    .Send
End With
On Error GoTo 0

Set MyItem = Nothing
Set MyOlApp = Nothing


Next E

更新:

虽然我无法找到问题的实际原因。我设法找到了一个非常简单的修复方法。

我创建了一个新的Outlook配置文件,只有我们需要发送的备用帐户,它工作得很好。这非常有效,因为代码仅在运行3小时报告后每周使用一次。

我可以看到它不适用于以这种方式定期(全天)发送电子邮件的人。

作为参考,您可以通过WIN 8 SEARCH / MAIL访问配置文件(按设置过滤),选择MAIL,然后选择查看配置文件。

1 个答案:

答案 0 :(得分:0)

一个非常简单的修复。

我创建了一个新的Outlook配置文件,只有我们需要发送的备用帐户,它工作得很好。

我承认对于以这种方式定期(全天)发送电子邮件的人来说,这不是一个好方法。