Perry,
  I have done this by setting up an ASP page as a function to process the variables 
passed in and write them to an html email like so:

results of form are sent to a page that processes responses, dims them as variables, 
calls the variables into a formatted HTML template: 
<% 
Function ProcessEmail()

                HTML = "<!DOCTYPE HTML PUBLIC""-//IETF//DTD HTML//EN"">"
                HTML = HTML & "<html>"
                HTML = HTML & "<head>"
                HTML = HTML & "<title>Your Title</title>"
                HTML = HTML & "</head>"
                HTML = HTML & "<body>"
                HTML = HTML & "<strong>Dept:</strong>&nbsp;" & myDeptVar
                
                etc....
End Function %>

and uses CDONTS to send the mail, something like:

Set objMail = CreateObject("CDONTS.NewMail")
        
            HTML = ProcessEmail()
            objMail.From = myEmailVar
            objMail.To = [EMAIL PROTECTED]
            objMail.Subject = "My Subject"
            objMail.Body = HTML
            objMail.BodyFormat = 0
            objMail.MailFormat = 0
            objMail.Send
        Set objMail = Nothing

Hope this is a start in the right direction.

Stephen Caudill
Web Developer
Municipal Code Corporation
www.municode.com
[EMAIL PROTECTED]

____ � The WDVL Discussion List from WDVL.COM � ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED]
       Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
    http://wdvl.internet.com/WDVL/Forum/#sub

________________  http://www.wdvl.com  _______________________

You are currently subscribed to wdvltalk as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to