I am sending a text only email using TIdMessage and TIdSMTP.

For the Body I use a simple concatenated string like

Body := SomeText + #13#10 +
          SomeOtherText + #13#10 +
          SomeMoreText + #13#10 +
          FinalText;

Anyway in the generated email some of the "#13#10" aren't ignored. I log the Body variable and I can see that the text goes to new line, anyway in the email this doesn't happen. The strange thing is that doesn't happen on every line but only on some lines.

Do you have an idea on why this happens? Can you suggest something to check for? Is there some possible confict between #13#10 and an text email body in some conditions?

UPDATE

After more investigation (thanks to your comments) I realized it is an Outlook visualization problem, anyway the problem is still not clear to me.

This is the body of the email opened in NotePad++ (I opened the msg file saved from outlook) where I show also line breaks (you can see #13#10 as CR LF. I highlighted in red and green the 2 line breaks that are problematic in outlook (but you can see that in NP++ they look like all the other linebreaks): Email body in NotePad++

The email in Outlook looks like this (please note that outlook says that the message has extra line breaks and that they hahve been removed, but he offers an option to restore them: EMail in Outlook displayin bad]

After choosing that option the email is ok: enter image description here

I don't understand why this happens only on some line breaks. Does this help you to understand the problem better?

link|improve this question

Are you using the latest Indy version (10.5.8)? – mjn Jan 17 at 14:28
2  
you can use IdMessage.ContentType := 'text/html' and replace #13#10 with <br>. – kobik Jan 17 at 14:33
@mjn good point. I was sure to have 10.5.8 but on the build machine I still have the one that ships with Delphi 2009. I will upgrade now an try again. – user193655 Jan 17 at 16:11
1  
Please show the actual generated email and point out what you think is wrong about it. – Remy Lebeau Jan 17 at 23:43
I confirm the problem is there also with 10.5.8. I updated my message please see latest part and see if thie can help. – user193655 Jan 18 at 10:36
show 1 more comment
feedback

2 Answers

up vote 6 down vote accepted

You could try using IdMessage.NoEncode := True so that the Body will not be RCF 821 encoded.

Or better use modern encoding IdMessage.ContentType := 'text/html' and replace #13#10 with <br>

EDIT: This is an Outlook Express issue.

Look Here and Here. A workaround would be to add 2 empty characters to the beginning of each line of text in order to make Outlook not remove the breaks.


Note that Microsoft support also suggests using HTML format as a possible workaround with Outlook Express:

Method 2. Use HTML or Rich Text format You can use HTML or Rich Text formats when you create new items. Or you can change existing posts to these formats.

link|improve this answer
1  
This answer suggests some workarounds, but does not answer the question, which asked why the lines are sent incorrectly in the first place. – Rob Kennedy Jan 17 at 17:35
1  
I'm well aware of that Rob. It might be Indy, It might be the mail client. I proposed an alternative :) – kobik Jan 17 at 19:53
If possible i like to use #13#10 because I want to display the message on a TMemo too, so I am interested in NoEncode option. Could you please tell me which are the advantages/disadvantages and which will be the encoding in that case? – user193655 Jan 18 at 10:39
no problem displaying it in the TMemo. simply assign Memo.Text to a variable S and change #13#10 to <br> and send it. – kobik Jan 18 at 11:19
@user193655, it is an Outlook Express issue. see edit. – kobik Jan 18 at 12:18
show 2 more comments
feedback

It might be the email client stripping out some line breaks, if your ContentType is plain text.

link|improve this answer
you mean the mail client is reading my email non correctly, "mis-interpreting" the line breaks? – user193655 Jan 18 at 10:14
Yes I confirm, see my latest update to the question. But why? – user193655 Jan 18 at 10:39
See http://support.microsoft.com/kb/287816 for info about Outlook and line breaks. It looks like there is an option in Outlook that is set by default. I haven't tried using rich-text format as Microsoft suggests. I ended up switching to html formatted mail messages, but that brings its own set of challenges when dealing with Outlook clients and junk filters. – Sam M Jan 18 at 12:48
Thanks a lot, 95% of my customers use Outlook so I cannot say them, to change mail client, so I need to fix the problem. Thanks, i choose this as answer since it is the answer to the question (so it can help other Stack overflow users), but I will use kobib idea for fixing the problem. – user193655 Jan 18 at 15:11
that support ticket does not explain WHY Outlook decides to remove line breaks, though. Especially for plain text messages. – Remy Lebeau Jan 21 at 3:45
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.