<% if Request.Form("fromEmail")="" then showForm else sendEmail end if sub showForm %>
  HOME   |   NEWS   |   FEATURES   |   CAMPUS LIFE   |   OPINION   |   SPORTS
  Blogs   |   Letter to Editor   |   Archives   |   Staff   |   Advertising   |   Jobs   |   Contact
   MyEtown   |    E-mail
  

 
Letter to the Editor
Use the form below to send a letter to the editor. Your letter should be a maximum of 300 words.
Submitting a letter to the editor does not guarantee that it will be published.
Your name:
Your e-mail:
Your letter:


<% end sub sub sendEmail fromEmail=Request.Form("fromEmail") 'toEmail=Request.Form("toEmail") toEmail="editor@etownian.com; opinion@etownian.com; webmaster@etownian.com" message=Request.Form("message") pageurl=Request.Form("page") fromName=Request.Form("fromName") Dim objNewMail Set objNewMail = Server.CreateObject("CDONTS.NewMail") objNewMail.From = fromEmail objNewMail.To = toEmail objNewMail.Subject = "Letter to the Editor" strBody=fromName &" (" strBody=strBody& fromEmail & ") wrote: " &vbcrlf strBody=strBody&"__________________________________________"&vbcrlf&Vbcrlf strBody=strBody&message&vbcrlf strBody=strBody&"__________________________________________"&vbcrlf objNewMail.Body=strBody objNewMail.Send Set objNewMail = Nothing %> The Etownian
  HOME   |   NEWS   |   FEATURES   |   CAMPUS LIFE   |   OPINION   |   SPORTS
  Blogs   |   Letter to Editor   |   Archives   |   Staff   |   Advertising   |   Jobs   |   Contact
   MyEtown   |    E-mail
  

  Thank you for submitting your letter to the editor.

Note: Your letter may be published in a future issue of The Etownian or on etownian.com; however, submission does not guarantee publication.

Return to The Etownian Online

<% end sub%>