In Excel, I want to send the active wrokbook to a specific address via Outlook. Here is the code I have:
Sub Object15_Click()
' MACRO to email completed doc to specified Outlook Inbox
ActiveWorkbook.SendMail _
Recipients:="joe@somewhere.com", _
Subject:="Active_Workbook"
End Sub
Now, the code works fine, but instead of it automatically sending the document, I want a new email message window to pop up that has the attachment in it so the user can send the email. Any suggestions?
Thanks!
Sub Object15_Click()
' MACRO to email completed doc to specified Outlook Inbox
ActiveWorkbook.SendMail _
Recipients:="joe@somewhere.com", _
Subject:="Active_Workbook"
End Sub
Now, the code works fine, but instead of it automatically sending the document, I want a new email message window to pop up that has the attachment in it so the user can send the email. Any suggestions?
Thanks!