VBA: Sending an email with PDF attachment separately to multiple recipients

Baggio

New Member
Joined
Mar 28, 2018
Messages
2
Hi everyone!

I have a code which convert Excel sheet to a PDF-file and send it to the address list (Range L17:L26). This works fine but is it possible to send these emails separately to each recipient? Here are the code which I'm using now:

Code:
Sub AttachActiveSheetPDF()
  Dim IsCreated As Boolean
  Dim i As Long
  Dim PdfFile As String, Title As String
  Dim OutlApp As Object
  Dim EmailAddr As String
  Dim Cell As Range
 


  ' Define PDF filename
  PdfFile = ActiveWorkbook.FullName
  i = InStrRev(PdfFile, ".")
  If i > 1 Then PdfFile = Left(PdfFile, i - 1)
  PdfFile = PdfFile & "_" & Range("A27").Value & " " & Range("E27").Value & ".pdf"
 
  ' Export activesheet as PDF
  With ActiveSheet
    .ExportAsFixedFormat Type:=xlTypePDF, FileName:=PdfFile, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
  End With
  
  'Loop through the rows
    For Each Cell In Range("L17:L26").Cells
        If Cell.Value Like "*@*" Then
            EmailAddr = EmailAddr & ";" & Cell.Value
        End If
    Next
 
  ' Use already open Outlook if possible
  On Error Resume Next
  Set OutlApp = GetObject(, "Outlook.Application")
  If Err Then
    Set OutlApp = CreateObject("Outlook.Application")
    IsCreated = True
  End If
  OutlApp.Visible = True
  On Error GoTo 0
 
  ' Prepare e-mail with PDF attachment
  With OutlApp.CreateItem(0)
   
    ' Prepare e-mail
    .Subject = "Subject X - " & Range("A27").Value & " " & Range("E27").Value & ""
    .To = EmailAddr
    .CC = ""
    .Body = "Body"
    .Attachments.Add PdfFile
   
    ' Try to send
    On Error Resume Next
    .Send
    Application.Visible = True
    If Err Then
      MsgBox "Message X", vbExclamation
    Else
      MsgBox "Message Y", vbInformation
    End If
    On Error GoTo 0
   
  End With
 
  ' Delete PDF file
  Kill PdfFile
 
  ' Quit Outlook if it was created by this code
  If IsCreated Then OutlApp.Quit
 
  ' Release the memory of object variable
  Set OutlApp = Nothing
 
End Sub

Thanks for you help!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi,

Untested but try the following couple of changes.

Code:
  'Loop through the rows
    For Each Cell In Range("L17:L26").Cells
        If Cell.Value Like "*@*" Then
            EmailAddr =  Cell.Value            '----------------------- just one recipient
        End If

.....................................



 End With
Next '----------------------- next moved to after mail
 
  ' Delete PDF file
  Kill PdfFile
 
Last edited:
Upvote 0
Try this.
Code:
Sub AttachActiveSheetPDF()
Dim IsCreated As Boolean
Dim i As Long
Dim PdfFile As String, Title As String
Dim OutlApp As Object
Dim EmailAddr As String
Dim Cell As Range

    ' Define PDF filename
    PdfFile = ActiveWorkbook.FullName
    
    i = InStrRev(PdfFile, ".")
    
    If i > 1 Then PdfFile = Left(PdfFile, i - 1)
    
    PdfFile = PdfFile & "_" & Range("A27").Value & " " & Range("E27").Value & ".pdf"
    
    ' Export activesheet as PDF
    With ActiveSheet
        .ExportAsFixedFormat Type:=xlTypePDF, Filename:=PdfFile, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
    End With
    
    
    ' Use already open Outlook if possible
    On Error Resume Next
    
    Set OutlApp = GetObject(, "Outlook.Application")
    
    If Err Then
        Set OutlApp = CreateObject("Outlook.Application")
        IsCreated = True
    End If
    
    OutlApp.Visible = True
    On Error GoTo 0
        
    'Loop through the rows
    For Each Cell In Range("L17:L26").Cells
        If Cell.Value Like "*@*" Then
            EmailAddr = Cell.Value
            
            ' Prepare e-mail with PDF attachment
            With OutlApp.CreateItem(0)
                
                ' Prepare e-mail
                .Subject = "Subject X - " & Range("A27").Value & " " & Range("E27").Value & ""
                .To = EmailAddr
                .CC = ""
                .Body = "Body"
                .Attachments.Add PdfFile
                
                ' Try to send
                On Error Resume Next
                .Send
                Application.Visible = True
                If Err Then
                    MsgBox "Message X", vbExclamation
                Else
                    MsgBox "Message Y", vbInformation
                End If
                On Error GoTo 0
                
            End With
        End If
        
    Next Cell
    ' Delete PDF file
    Kill PdfFile
    
    ' Quit Outlook if it was created by this code
    If IsCreated Then OutlApp.Quit
    
    ' Release the memory of object variable
    Set OutlApp = Nothing
 
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,393
Members
449,081
Latest member
JAMES KECULAH

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top