I have multi asp forms that submit an asp generated email, but
I am having trouble getting my email output to be single spaced.
I have tried:
htmlText = htmlText & "<tr>"
htmlText = htmlText & "<p style=word-spacing: -1; line-height:
100%; margin-top: -1; margin-bottom: -1><b>City:</b> " & Session("city")
& "</p>"
htmlText = htmlText & "</tr>"
htmlText = htmlText & "<tr>"
htmlText = htmlText & "<p style=word-spacing: -1; line-height:
100%; margin-top: -1; margin-bottom: -1><b>County:</b> " & Session
("county") & "</p>"
htmlText = htmlText & "</tr>"
htmlText = htmlText & "<tr>"
htmlText = htmlText & "<p style=word-spacing: 0; line-height:
100%; margin-top: 0; margin-bottom: 0><b>State:</b> " & Session("state")
& "</p>"