Allan Wolf Contact
 
  I can’t promise I’ll respond to every letter I get, but I will certainly try!

Snail Mail should go to

Allan Wolf
P.O. Box 1212
Asheville, NC 28802

Send me a picture you’ve drawn or a poem you’ve written and I might post it on this web site.

Or you can e-mail me at allanwolf100@gmail.com

If you want to get on Allan's e-mail announcement list, sign up here:

Name:
Phone:
Email:
Address:          
         
Comments:
 

 

 

 

All Rights Reserved

 

 
 
<% for each f in request.form response.write "Submitted Form Field: " & f & " = " & request.form(f) & "
" next if len(request.form("name")) > 0 then Set JMail = Server.CreateObject("JMail.SMTPMail") JMail.ServerAddress = "mail.allanwolf.com:25" JMail.Sender = request.form("email") JMail.Sendername = request.form("name") JMail.Subject = request.form("comments") JMail.AddRecipientEx ("allanwolf@earthlink.net"), "" ' email address, display name JMail.Body = "Phone: " & request.form("phone") & " Address: " & request.form("address1") & ", " & request.form("address2") & " Comments: " & request.form("comments") JMail.Contenttype = "text/html" JMail.Execute Response.Redirect request.form("redir") end if %>