I have some code to send an excel file but I need some kind of way to handle if the user decides to not send the email? Any help? Here is my current code:
Also if there is some easy code to add the users outlook signature that would help as well but the user can always insert it themselves.
Thanks!
Code:
Private Sub cmdEmailBuyer_Click()
DoCmd.SendObject acSendForm, "Computer Cost Add-ON", acFormatXLSX, "CAO", "CAO_CC", , "Computer Cost Add-ON " & Format(Date, "mm/dd/yyyy"), "Attached is a revised Computer Cost Add-Ons spreadsheet as of today per David.", True
End Sub
Also if there is some easy code to add the users outlook signature that would help as well but the user can always insert it themselves.
Thanks!