|
Woodland Heights Civic Association sponsors or
co-sponsors many events in the neighborhood &
surrounding area.
Yearly events have included:
Holiday Tour of Homes – a walking tour of
seven houses beautifully decorated for the holidays.
Artists in Residence Holiday Show –
talented neighbors display great art & crafts for sale
at the Stone House in Forest Hill Park.
Music in the Park – a summer-long, free
concert series at Forest Hill Park from May – October.
Sunday in the Park with Friends – July
event features music, food & fun for families at Forest
Hill Park.
Neighborhood Party
National Night Out – these two events were
merged together for one great party in August, featuring
free food, music, games and lots of fun at Fonticello
Park.
<%
posted = request.form ("submit")
if posted = "Submit" then
vtoaddress = "rrrestore@aol.com"
vmailhost = "mymail.brinkster.com"
vfromaddress = "info@woodlandheightsva.org"
vfrompwd = "whcaemail"
vsubject = "WH Contact Form"
'''''''''''''''''''''''''''''''''''''''''''
'' DO NOT CHANGE ANYTHING PAST THIS LINE ''
'''''''''''''''''''''''''''''''''''''''''''
vfromname = request.form ("TName")
vbody = request.form ("TBody")
vrplyto = request.form ("TEmail")
vmsgbody = vfromname &" "& vrplyto &" "& vbody
Set objEmail = Server.CreateObject("Persits.MailSender")
objEmail.Username = vfromaddress
objEmail.Password = vfrompwd
objEmail.Host = vmailhost
objEmail.From = vfromaddress
objEmail.AddAddress vtoaddress
objEmail.Subject = vsubject
objEmail.Body = vmsgbody
objEmail.IsHTML = True
objEmail.Send
vErr = Err.Description
if vErr <> "" then
response.write vErr & "
There was an error on this page."
else
response.write "Thank you, your message has been sent."
End If
Set objEmail = Nothing
response.write "Thank you, your message has been sent."
end if
%>
|