Word Routing Slip

D

Dale Levesque

I'm using the following code to send a word document to a recipient. It just
seems to sit in the outbox though. Any suggetstions?

Dale

If ai_Output = dyEmail Then
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.Subject = "Custom Pricing Quote " & lblQuote.Caption
.AddRecipient gas_Emails(1, gi_Email_ID)
.Delivery = wdAllAtOnce
.Message = "Please see attached."
End With
ActiveDocument.Route
Else
.ActiveDocument.PrintOut Background:=False
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top