Group: microsoft.public.word.vba.general
From: =?Utf-8?B?TllTQS1IRA==?=
Date: Wednesday, March 19, 2008 1:42 PM
Subject: Submit Word Form via Email in VBA Macro

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: helpdesk@mycompany.com.

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 "Firstaddress@Mail.com"
.AddRecipient "Secondaddress@Mail.com"
.Delivery = wdAllAtOnce
End With
Activedocument.Route