N
NYSA-HD
I have a survey form in MS Word using Word Fields. I would like to create a
submit button that emails the form (regardless of email client-must be able
to work w/ other email apps like Thunderbird, etc...) to a designated address
(ie: (e-mail address removed).
The code I was attempting was (shown below) - but every time I run it I get
general mail failure. Any ideas?
Thanks in advance.
-----------------------
Activedocument.HasRoutingSlip = True
With Activedocument.RoutingSlip
.Subject = "New subject goes here"
.AddRecipient "(e-mail address removed)"
.AddRecipient "(e-mail address removed)"
.Delivery = wdAllAtOnce
End With
Activedocument.Route
submit button that emails the form (regardless of email client-must be able
to work w/ other email apps like Thunderbird, etc...) to a designated address
(ie: (e-mail address removed).
The code I was attempting was (shown below) - but every time I run it I get
general mail failure. Any ideas?
Thanks in advance.
-----------------------
Activedocument.HasRoutingSlip = True
With Activedocument.RoutingSlip
.Subject = "New subject goes here"
.AddRecipient "(e-mail address removed)"
.AddRecipient "(e-mail address removed)"
.Delivery = wdAllAtOnce
End With
Activedocument.Route