Formatting classic ASP in an email

nickbadger

New Member
Can anyone tell me how i would format the following ASP line for an email with bold\[code\]email_body = email_body & "Full Name: " & fullname & vbcrlf & vbcrlf\[/code\]I also tried:\[code\]email_body = email_body & "<b>Full Name:</b> " & fullname & vbcrlf & vbcrlf\[/code\]But it didn't work, just showed the tagsThe email just showed the bold tagsSorry the format I want is
Full Name: John Smith
And the ASP code is:
\[code\]email_body = email_body & "Full Name: " & fullname & vbcrlf & vbcrlf <br />\[/code\] I tried adding the Bold tags around the Full name, but it didn't format it just showed the actual tags
 
Back
Top