Sub PrintMeTwice()
Dim msg as Outlook.MailItem
On Error Resume Next
Set msg = Application.ActiveInspector.CurrentItem
msg.PrintOut
msg.PrintOut
msg.Send
End Sub
"rr" <nospam@rochester.rr.com> wrote in message news:482b4aac$0$30486$4c368faf@roadrunner.com...
> We use Outlook to process mail orders. Several times a day, I have an open
> message which when done editing, I need to print two copies for packing
> lists and then send the message. I have been doing this manually, but I'd
> like to have a vba macro to do that operation.
>
> Thanks for your help.
>
>