Hmmm. Interesting... The lack of formating is quite
disappointing, but it could work. I wonder if there is
any way to get these invoices to be automatically
emailed. There must be...
I'll give it a shot later today and get back to you if I
could get it to work.
Alex
>-----Original Message-----
>I'm trying to do something very similar, but have had
[quoted text clipped - 38 lines]
>>
>.
Yeah you can programmatically e-mail them. You can use
Word VBA to do this:
ActiveDocument.HasRoutingSlip = True
With ActiveDocument
With .RoutingSlip
.Subject = "Matter Change Form"
.AddRecipient "ELITECHANGE"
.Delivery = wdAllAtOnce
.Message = "Attached is a Matter Change Form."
.ReturnWhenDone = False
.TrackStatus = False
End With
.Route
End With
The Recipient could be read from a database certainly.
>-----Original Message-----
>Hmmm. Interesting... The lack of formating is quite
[quoted text clipped - 56 lines]
>>
>.
Alex Paradi - 20 Jul 2004 14:19 GMT
Wow... thanks!
I'll have to give this a try and test it out
>-----Original Message-----
>Yeah you can programmatically e-mail them. You can use
[quoted text clipped - 85 lines]
>>
>.