jimmythegeek
Programmer
Below is a section of code I have in an .asp page. Everything works great except that I can't get the body of the e-mail to recognize the line feeds or breaks:
==========
strSubject = "Executive Summary for " & rs("ProjName"
strBody1 = "Click the following link to view the Executive Status Report for this project"
strBody2 = " & project & "1"
Response.Write "<A href='mailto:?Subject=" & strSubject & "&body=" & strBody1 & chr(10) & strBody2 & "'>Email this summary</A>"
==========
I have also tried the following:
strBody1 & "<BR>" & strBody2
strBody1 & chr(10) & chr(13) & strBody2
None of which breaks the strings into seperate lines. Any suggestions? Thanks in advance.
Jim Lunde
compugeeks@hotmail.com
Custom Application Development
==========
strSubject = "Executive Summary for " & rs("ProjName"
strBody1 = "Click the following link to view the Executive Status Report for this project"
strBody2 = " & project & "1"
Response.Write "<A href='mailto:?Subject=" & strSubject & "&body=" & strBody1 & chr(10) & strBody2 & "'>Email this summary</A>"
==========
I have also tried the following:
strBody1 & "<BR>" & strBody2
strBody1 & chr(10) & chr(13) & strBody2
None of which breaks the strings into seperate lines. Any suggestions? Thanks in advance.
Jim Lunde
compugeeks@hotmail.com
Custom Application Development