excel 如何在VBA宏代码中嵌入CC和BCC,同时将行集发送给唯一的人

jk9hmnmh  于 2023-06-25  发布在  其他
关注(0)|答案(2)|浏览(139)

我有一个宏,它会电子邮件一行或行的每个人在一个范围。我只是想知道如何添加CC和BCC,这是在每一个电子邮件相同。我是一个成熟的Excel VBA。请帮帮我
这里是代码

Sub Send_Row_Or_Rows_1()

Dim OutApp As Object
Dim OutMail As Object
Dim rng As Range
Dim Ash As Worksheet
Dim Cws As Worksheet
Dim Rcount As Long
Dim Rnum As Long
Dim FilterRange As Range
Dim FieldNum As Integer
Dim mailAddress As String
Dim StrBody As String

On Error GoTo cleanup
Set OutApp = CreateObject("Outlook.Application")

With Application
    .EnableEvents = False
    .ScreenUpdating = False
End With

Set Ash = ActiveSheet

'Set filter range and filter column (Column with names)
Set FilterRange = Ash.Range("A1:H" & Ash.Rows.Count)
FieldNum = 1    'Filter column = A because the filter range start in A

'Add a worksheet for the unique list and copy the unique list in A1
Set Cws = Worksheets.Add
FilterRange.Columns(FieldNum).AdvancedFilter _
        Action:=xlFilterCopy, _
        CopyToRange:=Cws.Range("A1"), _
        CriteriaRange:="", Unique:=True

'Count of the unique values + the header cell
Rcount = Application.WorksheetFunction.CountA(Cws.Columns(1))

'If there are unique values start the loop
If Rcount >= 2 Then
    For Rnum = 2 To Rcount

        'Filter the FilterRange on the FieldNum column
        FilterRange.AutoFilter Field:=FieldNum, _
                               Criteria1:=Cws.Cells(Rnum, 1).Value

        'Look for the mail address in the MailInfo worksheet
        mailAddress = ""
        On Error Resume Next
        mailAddress = Application.WorksheetFunction. _
                      VLookup(Cws.Cells(Rnum, 1).Value, _
                            Worksheets("Mailinfo").Range("A1:B" & _
                            Worksheets("Mailinfo").Rows.Count), 2, False)
        On Error GoTo 0

        If mailAddress <> "" Then
            With Ash.AutoFilter.Range
                On Error Resume Next
                Set rng = .SpecialCells(xlCellTypeVisible)
                On Error GoTo 0
            End With

            Set OutMail = OutApp.CreateItem(0)

            On Error Resume Next

            With OutMail
                .to = mailAddress
                .Subject = "Test mail"
                .HTMLBody = StrBody & RangetoHTML(rng)
                .Display  'Or use Send

                StrBody = Sheets("Sheet2").Range("A1").Value & "<br>" & "<br>" & _
          Sheets("Sheet2").Range("A2").Value & "<br>" & "<br>" & _
          Sheets("Sheet2").Range("A3").Value & "<br><br><br>"

            End With
            On Error GoTo 0

            Set OutMail = Nothing
        End If

        'Close AutoFilter
        Ash.AutoFilterMode = False

    Next Rnum
End If
cleanup:
Set OutApp = Nothing
Application.DisplayAlerts = False
Cws.Delete
Application.DisplayAlerts = True

With Application
    .EnableEvents = True
    .ScreenUpdating = True
End With
End Sub
vc6uscn9

vc6uscn91#

  • 本该如此 *
With OutMail
                .to = mailAddress
                .cc = "email address"
                .Bcc ="email address"

如果您想添加多个电子邮件,则
.cc = "email address; email address"

MailItem.CC property (Outlook)

返回一个字符串,表示复写本(CC)名称的显示列表。

v1uwarro

v1uwarro2#

我会建议使用一个单独的子例程发送电子邮件。使用现有的子例程对数据进行分类,并在需要发送电子邮件时调用下面的子例程。这将解决您添加和解析bcc和cc邮件地址的问题,此外,还将对outlook示例进行出色的内存管理。
请使用以下代码:

Sub SendEmail(ByVal str_To_EmailAddress As String, ByVal strSubject As String, ByVal strHTMLBody As String)
Dim OutApp As Object
Dim oMsg As Object
Dim objRecip As Object

Dim str_CC_EmailAddress As String
Dim str_BCC_EmailAddress As String

Set OutApp = CreateObject("Outlook.Application")
Set oMsg = OutApp.ActiveInspector.CurrentItem

str_CC_EmailAddress = "ABC@example.com"
str_BCC_EmailAddress = "XYZ@example.com"

With oMsg
    'Add to Email Address
    Set objRecip = oMsg.Recipients.Add(strToEmailAddress)
    objRecip.Type = olTo
    objRecip.Resolve

    'Add CC Email Address
    Set objRecip = oMsg.Recipients.Add(str_CC_EmailAddress)
    objRecip.Type = olCC
    objRecip.Resolve

    'Add BCC Email Address
    Set objRecip = oMsg.Recipients.Add(str_BCC_EmailAddress)
    objRecip.Type = olBCC
    objRecip.Resolve

    'Add Subject
    .Subject = strSubject

    'Add Body
    .BodyFormat = olFormatHTML

    'Display or Send
    .Display '.Send
End With

Set oMsg = Nothing

End Sub

请构造以分号(;)分隔的电子邮件地址字符串).

相关问题