I am having some problems with my code. You can see it below. Please look at the line that is red. The results don't show up in the body of the email. It shows True instead. Can someone please help me with this?
dim MyMail
Set MyMail = Server.CreateObject("CDO.Message")
EmailBody = Message
EmailBody = EmailBody = EmailBody & vbCrLf & vbCrLf & "<p><a href=""http://www.brightideaweb.com" & "/ViewFormResults.asp?ID=" & EmailID & """> <img src=logo.gif"> "</a>"
with MyMail
.From = Sender & "<" & SenderEmail & ">"
.To = Name & "<" & Email & ">"
.Subject = Subject
.HTMLBody = EmailBody
'.TextBody = EmailBody
.Send()
End With
Edited by Misty