|
Hi,
I use a version of the aspmailer script but have no problems with the line feeds. The script uses a standard line feed character and you could expand this to include a carriage return.
There are 2 lines you need to adjust - look for Chr(10) in the script and change it to vbCrLf e.g:
Change:
strOut = strOut & strKeys(intCnt) & "=" & strValues(intCnt) & Chr(10)
To:
strOut = strOut & strKeys(intCnt) & "=" & strValues(intCnt) & vbCrLf
Hope that helps
moth
|