This topic is locked
[SOLVED]

 Foreign Characters/Spaces in HTML Email

9/5/2011 1:28:19 PM
ASPRunnerPro General questions
D
dpdevil16 author

Hi all,
I'm running into an issue where a random space appears in the emails sent after a record is added. I'm guessing that the location of this space is dependent on the amount of data preceding it, so is it possible that I'm encountering some kind of character limit in my message string? For what it's worth, I'm using the UTF-8 character set.
Thanks for any feedback anyof you can provide!
-Dan

D
dpdevil16 author 9/5/2011

Ok, I think have more information on this that might have answered my own question. When I analyze the HTML email source code, it appears as if a carriage return is being added after 1024 characters, so the space I'm seeing is actually a line break. I'm hoping that formatting the code by adding vbclrf's to each line will fix this problem for me.

D
dpdevil16 author 9/5/2011



Ok, I think have more information on this that might have answered my own question. When I analyze the HTML email source code, it appears as if a carriage return is being added after 1024 characters, so the space I'm seeing is actually a line break. I'm hoping that formatting the code by adding vbclrf's to each line will fix this problem for me.


Yup, the did it. Hope someone else finds this useful.