Tracking/recording date auto-email was sent via Macro

cdg786

New Member
Joined
Nov 17, 2022
Messages
22
Office Version
  1. 365
Platform
  1. Windows
This may not be possible, but has anyone found a way to track and record each instance of running an auto-pdf-email macro in excel? I have built a system to automatically send purchase orders based on vendor information. Ideally, I can automatically record the most recent issuance date (send date) each time we send an updated purchase order. I would want to do this by vendor, assigning that record to a vendor summary page. Currently I have an order form template sheet created. The template includes a field that, when changed, adjusted the form to include the assigned vendor info. Then you just hit the send botton.

Might be too much for excel. Figured I would send this into the void and see what happens.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
without seeing your actual sheets and code that sends the email, it's difficult to provide direction. That being said, you'll be looking at something along the lines of:
VBA Code:
'In this example, your code just sent an email to Vendor 10.
' assume i is set to the row of Vendor 10 on your vendor summary page and
' Vendor name is in column A | Last email date is column B

Sheet1.Range("B" & i).Value = "Email sent " & Now
 
Upvote 0
Thanks -- Good point. See below vba code.

VBA Code:
Public Sub Save_Range_As_PDF_and_Send_Email()

    Dim PDFrange As Range
    Dim PDFfile As String
    Dim toEmail As String, emailSubject As String
    Dim OutApp As Outlook.Application
    Dim OutMail As Outlook.MailItem
    Dim HTMLBody As String
    
    With ActiveWorkbook
    
        Set PDFrange = .ActiveSheet.Range("A1:I37")
        toEmail = .ActiveSheet.Range("B15").Value
        emailSubject = .ActiveSheet.Range("C6").Value
  
        PDFfile = Replace(.FullName, ".xlsx", ".pdf")
    
    End With
    
    PDFrange.ExportAsFixedFormat Type:=xlTypePDF, Filename:=PDFfile, _
        Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False

    'Send email with PDF file attached

    Set OutApp = New Outlook.Application

    Set OutMail = OutApp.CreateItem(olMailItem)
    With OutMail
        .Display
        .To = toEmail
        .Subject = emailSubject
        .HTMLBody = "<p> Hello, </p>" & "<p> Please see attached bid request. We are happy to connect to discuss an missing details. </p>" & _
                    "<p> Thank you, </p>" & "<p> </p>" & .HTMLBody
                            
        .Attachments.Add PDFfile
        .send
    End With

    'Delete the temporary PDF file

    Kill PDFfile

    Set OutMail = Nothing

End Sub
 
Upvote 0
I don't know what your vendor sheet looks like, but essentially, pick a cell to record the send date and then update it in the code below:
VBA Code:
Public Sub Save_Range_As_PDF_and_Send_Email()

    Dim PDFrange As Range
    Dim PDFfile As String
    Dim toEmail As String, emailSubject As String
    Dim OutApp As Outlook.Application
    Dim OutMail As Outlook.MailItem
    Dim HTMLBody As String
    
    With ActiveWorkbook
    
        Set PDFrange = .ActiveSheet.Range("A1:I37")
        toEmail = .ActiveSheet.Range("B15").Value
        emailSubject = .ActiveSheet.Range("C6").Value
  
        PDFfile = Replace(.FullName, ".xlsx", ".pdf")
    
    End With
    
    PDFrange.ExportAsFixedFormat Type:=xlTypePDF, Filename:=PDFfile, _
        Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False

    'Send email with PDF file attached

    Set OutApp = New Outlook.Application

    Set OutMail = OutApp.CreateItem(olMailItem)
    With OutMail
        .Display
        .To = toEmail
        .Subject = emailSubject
        .HTMLBody = "<p> Hello, </p>" & "<p> Please see attached bid request. We are happy to connect to discuss an missing details. </p>" & _
                    "<p> Thank you, </p>" & "<p> </p>" & .HTMLBody
                            
        .Attachments.Add PDFfile
        .send
    End With

    'Delete the temporary PDF file

    Kill PDFfile

    Set OutMail = Nothing
'Change C15 below to wherever you want the last send date to be recorded.
Activesheet.Range("C15").Value = "Email sent " & Now
End Sub
 
Upvote 0
Thanks. This seems to work. How would I set it up to post the send date based on which PO is sent? I may have a list of 40 different vendors, each with a separate PO being sent through this macro. Ideally, the PO Sent Date is listed in the corresponding vendor row on a separate (still in same workbook) summary page. I imagine it is some sort of ifs statement?
 
Upvote 0
Are you able to share your sheet with OneDrive or Dropbox (with data sanitized as needed)...it will be much easier to understand what exactly you're trying to do.
 
Upvote 0

Forum statistics

Threads
1,223,898
Messages
6,175,272
Members
452,628
Latest member
dd2

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