I want to send a document as an attachment to a list of people.
Excels SendMail method has 3 possible parameters
email list
subject
and one other but cant remember what it is
words sendmail method doesnt have any parameters?
i have tried
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.Subject = "New subject goes here"
.AddRecipient "richard.moyle@fujitsu-siemens.com"
'.AddRecipient "Secondaddress@Mail.com"
.Delivery = wdAllAtOnce
End With
ActiveDocument.Route
which works but i dont like the warning messages word gives me about someone trying to send an email etc.
i have vbscripts to send email but these dont work from within the actual word document because it complains that the file i am trying to attach is in use,,,naturally.
any other methods i can use???
cheers
von moyla
Excels SendMail method has 3 possible parameters
email list
subject
and one other but cant remember what it is
words sendmail method doesnt have any parameters?
i have tried
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.Subject = "New subject goes here"
.AddRecipient "richard.moyle@fujitsu-siemens.com"
'.AddRecipient "Secondaddress@Mail.com"
.Delivery = wdAllAtOnce
End With
ActiveDocument.Route
which works but i dont like the warning messages word gives me about someone trying to send an email etc.
i have vbscripts to send email but these dont work from within the actual word document because it complains that the file i am trying to attach is in use,,,naturally.
any other methods i can use???
cheers
von moyla