CATEGORIES
What is The New Line Characters for ASP and VB
How Can I Get a Line Break in My Text Email
Published by: San (9/18/2007)
SEP 18 2007
I am trying to use \n\r and \n to insert a line break in my emails but i am not having any success. Can you help me with some character to use so that it can give me a line break while sending out plain text email usine cdo.message.
Most Popular Articles
- What is The New Line Characters for ASP and VB
- How to Write Select Case in VB
- VBscript Regex Example to Strip Special Charater in an ASP Page
- How VBScript StrComp Functions Works with ASP Codes
- How to Code and Decode an URL
COMMENT
Name: San
I used vbCrlf couple of times and it worked for me.
Example:
dim name
name = "san"
name = name & vbCrlf & "is an asp coder."
Output:
san
is an asp coder.