I did this 10 years ago so I admit I am rusty at this but here are what I had in my notes that worked with Excel XP. I am currently using Excel 2010
With ThisWorkbook
.HasRoutingSlip = True
With .RoutingSlip
.Delivery = xlOneAfterAnother
.Recipients = Array("Recipient’s Name")
.Subject = "Monthly Client Status Update"
.Message = "Attached is the monthly status update as requested."
.ReturnWhenDone = True
End With
.Route
End With
ActiveWorkbook.SendMail Recipients:="recipient’s email address"
The last line will send the workbook but I need a Subject and Message to go with it.
With ThisWorkbook
.HasRoutingSlip = True
With .RoutingSlip
.Delivery = xlOneAfterAnother
.Recipients = Array("Recipient’s Name")
.Subject = "Monthly Client Status Update"
.Message = "Attached is the monthly status update as requested."
.ReturnWhenDone = True
End With
.Route
End With
ActiveWorkbook.SendMail Recipients:="recipient’s email address"
The last line will send the workbook but I need a Subject and Message to go with it.