P
Patrick de Ridder
string message = string.Format( "mailto:{0}?subject={1}&body={2}",
e_address, subject, body );
Process.Start( message );
These lines transfer an email text to Outlook Express.
body is a string in which all \r\n have been replaced by
%0d%0a, which works fine on my XP machine
but the application breaks down on W98SE. It would
appear that the problem lies in the length of the
body string. Because when the string is short
the application does not break down on W98SE.
Is there an explanation for this? Please help.
e_address, subject, body );
Process.Start( message );
These lines transfer an email text to Outlook Express.
body is a string in which all \r\n have been replaced by
%0d%0a, which works fine on my XP machine
but the application breaks down on W98SE. It would
appear that the problem lies in the length of the
body string. Because when the string is short
the application does not break down on W98SE.
Is there an explanation for this? Please help.