将Outlook电子邮件发送到Excel的收件人列表



我正在尝试将选定的数据通过Excel VBA列表进行电子邮件。

示例:
A专栏小时
B列费率
C总计
D列电子邮件地址

我们有数百人清单,他们的付款详细信息将每周发送。我们将信息从Excel文件复制并粘贴到Outlook电子邮件。

有没有办法通过Excel VBA发送电子邮件?

这应该有助于使您朝正确的方向启动。

Sub SendEmail()
    Dim OutApp As Object, OutMail As Object
    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)
    With OutMail
        .To = 'Your Contact List
        .CC = ""
        .BCC = ""
        .Subject = "Your Subject Name"
        .HTMLBody = 'The email body
        .Display
    End With
End Sub
In column A : Names of the people
In column B : E-mail addresses
In column C:Z : Filenames like this C:DataBook2.xls (don't have to be Excel files)

宏将在" Sheet1"中的每一行循环,如果B列中有电子邮件地址c:z中的文件名(s)将创建带有此信息的邮件并发送。

Sub Send_Files()
'Working in Excel 2000-2016
'For Tips see: http://www.rondebruin.nl/win/winmail/Outlook/tips.htm
    Dim OutApp As Object
    Dim OutMail As Object
    Dim sh As Worksheet
    Dim cell As Range
    Dim FileCell As Range
    Dim rng As Range
    With Application
        .EnableEvents = False
        .ScreenUpdating = False
    End With
    Set sh = Sheets("Sheet1")
    Set OutApp = CreateObject("Outlook.Application")
    For Each cell In sh.Columns("B").Cells.SpecialCells(xlCellTypeConstants)
        'Enter the path/file names in the C:Z column in each row
        Set rng = sh.Cells(cell.Row, 1).Range("C1:Z1")
        If cell.Value Like "?*@?*.?*" And _
           Application.WorksheetFunction.CountA(rng) > 0 Then
            Set OutMail = OutApp.CreateItem(0)
            With OutMail
                .to = cell.Value
                .Subject = "Testfile"
                .Body = "Hi " & cell.Offset(0, -1).Value
                For Each FileCell In rng.SpecialCells(xlCellTypeConstants)
                    If Trim(FileCell) <> "" Then
                        If Dir(FileCell.Value) <> "" Then
                            .Attachments.Add FileCell.Value
                        End If
                    End If
                Next FileCell
                .Send  'Or use .Display
            End With
            Set OutMail = Nothing
        End If
    Next cell
    Set OutApp = Nothing
    With Application
        .EnableEvents = True
        .ScreenUpdating = True
    End With
End Sub

https://www.rondebruin.nl/win/s1/outlook/amail6.htm

最新更新