I am currently using the code below to attach (& send) a workbook to an Outlook email message. The Recipient asked if I could change it so that the attachment gets zipped (WinZip) before it is send. Also, it would be great if it could save a copy of the workbook to the desktop. My VBA skills are very limited, please tell me how to change the existing code to do this?
___________________________________________________________
Sub SendActiveWorkbook()
Dim mrn As String
Dim sd As String
Dim urg As String
mrn = Sheets("Coversheet").Range("d5").Value
deal = Sheets("Coversheet").Range("D13").Value
brch = Sheets("Coversheet").Range("h9").Value
'sd = Sheets("Coversheet").Range("Settlement").Value
'urg = Sheets("Coversheet").Range("Urgent").Value
ActiveWorkbook.SendMail _
Recipients:="user email address", _
Subject:="WORKBOOK" & " - " & mrn & " " & deal & " Branch# - " & brch
End Sub
___________________________________________________________
Sub SendActiveWorkbook()
Dim mrn As String
Dim sd As String
Dim urg As String
mrn = Sheets("Coversheet").Range("d5").Value
deal = Sheets("Coversheet").Range("D13").Value
brch = Sheets("Coversheet").Range("h9").Value
'sd = Sheets("Coversheet").Range("Settlement").Value
'urg = Sheets("Coversheet").Range("Urgent").Value
ActiveWorkbook.SendMail _
Recipients:="user email address", _
Subject:="WORKBOOK" & " - " & mrn & " " & deal & " Branch# - " & brch
End Sub