SendMail("[email protected]", "[email protected]", session, "Profit = " + GetAtmStrategyRealizedProfitLoss(longatmStrategyId ).ToString("0.00") + " Entry = " + longlimitPrice.ToString("0.00") + " Time = " + timelongsignal);
This gives me the correct data but the format is as follows
Profit = 00.00 Entry = 00.00 Time = 8/26/2010 9:30:00AM
I would like the following format
Profit = 00.00
Entry = 00.00
Time = 8/26/2010 9:30:00AM
Is there a way to add a carriage returns to the command to produce the requested format?
Thanks
thepcmd

Comment