View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
[email protected] dave.mclachlan@gmail.com is offline
external usenet poster
 
Posts: 3
Default Sending Workbook

Noemi wrote:
Hi
I have got a command button which sends the worksheet to the applicable
mailbox however because the workbook is a large size (2000kb) I was wondering
if there is a way to automatically delete the email from outlook so as not to
clog up the mailbox.

Any suggestions????

thanks
Noemi



Hi Noemi,

Try...

With olNewMail
.DeleteAfterSubmit = True
.Send
End With