Hi All

I'm trying to code a procedure to send an email but it doesn't send it.
In particular i guess there is an error related to \r\n usage in Body part of email :
Code:
string BodyEmail = " Account Balance = "+DoubleToStr(AccountBalance(),2)+"$"+
"\r\nAccount Equity =+DoubleToStr(AccountEquity(),2)+"$"+
"\r\nAccount Profit ="+DoubleToStr(AccountProfit(),2);
So my question is : how can i code Body email to be able to show something like this in body email ?
Account Balance = 1234$
Account Equite = 1234$
Account Profit = 1234$