I am confused.
You will notice that this is VB, not HTML. What do I use so that
Location.Text and Check1.Text and Check2.Text will be on a new line when
they appear in the e-mail?
<script language="VB" runat="server">
Sub btnSendFeedback_Click(sender as Object, e as EventArgs)
'Create an instance of the MailMessage class
Dim objMM as New MailMessage()
'Set the properties - send the email to the person who filled out
the
'feedback form.
objMM.To = (e-mail address removed)
objMM.From = "(e-mail address removed)"
'send in html format
objMM.BodyFormat = MailFormat.Html
'Set the priority - options are High, Low, and Normal
objMM.Priority = MailPriority.Normal
'Set the subject
objMM.Subject = "Accident Investigation Form"
'Set the body
objMM.Body = DateTime.Now + " " & _
Location.Text & _
vbCrLf & vbCrLf & _
Check1.Text & "." & vbCrLf & vbCrLf & _
vbCrLf &vbCrLf & _
Check2.Text & vbCrLf
'Specify to use the default Smtp Server
SmtpMail.SmtpServer = ""
'Now, to send the message, use the Send method of the SmtpMail class
SmtpMail.Send(objMM)
panelSendEmail.Visible = false
panelMailSent.Visible = true
End Sub