> ok, I will try to describe my problem once again with shorter specificitaion
>
> every single email I export from PM to file, fragment in email
> contained rows by 77 letters and I do not why?!?
The e-mail should be 78 characters max per line.
> it means email contain for example 100 rows, but export file contain
> 300 rows because each one original row is fragment by 77 characters and
> each one of those new rows is finished with mark "="
Soft line break character. You must remove the soft line break and then delete the CR/LF at the end of the line to get this wrap.
>
> I tried to remove those additional line breaks by php script with
> function "substr_replace" but without any success, seems not problem
> with line breaks any idea how to prevent that useless rows-breaking, I
> am started to be mad from that
How about just printing to a file? The print process knows how to handle the soft line breaks.
<p>&gt; ok, I will try to describe my problem once again with shorter specificitaion
&gt;
&gt; every single email I export from PM to file, fragment in email
&gt; contained rows by 77 letters and I do not why?!?
The e-mail should be 78 characters max per line.
&gt; it means email contain for example 100 rows, but export file contain
&gt; 300 rows because each one original row is fragment by 77 characters and
&gt; each one of those new rows is finished with mark "="
Soft line break character.&nbsp; You must remove the soft line break and then delete the CR/LF at the end of the line to get this wrap.
&gt;
&gt; I tried to remove those additional line breaks by php script with
&gt; function "substr_replace" but without any success, seems not problem
&gt; with line breaks any idea how to prevent that useless rows-breaking, I
&gt; am started to be mad from that
How about just printing to a file? The print process knows how to handle the soft line breaks.</p><p>&nbsp;</p>