<%@LANGUAGE="VBSCRIPT"%> <% 'Mail contents of comment submission form to info@bullseyemarketinggroup.com 'Load local variables Dim Emfrom, Emto, Emsub, Embody Emfrom = "info@bullseyemarketinggroup.com" Emto = "info@bullseyemarketinggroup.com" Emsub = "Comments" Embody = "

Name: "&request.form("textfield2")&"
Email: "&request.form("textfield")&"
Comments: "&request.form("textfield3")&"

" 'Email contents Set ObjCdo = Server.CreateObject("CDONTS.NewMail") ObjCdo.BodyFormat = 0 '0=html 1=plain text ObjCdo.WrapLength = 1000 'set to max to eliminate odd page breaks ObjCdo.From = Emfrom ObjCdo.Subject = Emsub ObjCdo.To = Emto ObjCdo.body = Embody ObjCdo.send() Set ObjCdo = nothing %> Thankyou for Your Comments
Thank you for your comments!