Text in email body,, how to put in carriage returns ?

 
My EA sends me an email..

My code looks like this..

Symbol() + " OP_SELL @ " + DoubleToStr(OrderOpenPrice(),4) +" New stop loss @ " + DoubleToStr(NormalizeDouble(SellStop,digit),4) +" Pip Allowance @ " + DoubleToStr(PipAll,0) +
" MT4 Time: " + TimeToStr(TimeCurrent(),TIME_DATE|TIME_MINUTES) + " Local Time: " + TimeToStr(TimeLocal(),TIME_DATE|TIME_MINUTES)

The email string has no carriage returns or newline starts so when I get the email in my inbox it is one big long string Like

GBPUSD OP_BUY @ 1.9640 New stop loss @ 1.9640 Pip Allowance @ 0 MT4 Time: 2006.12.21 08:26 Local Time: 2006.12.21 21:26


How do I put line breaks in the email body text so my email looks like this..

GBPUSD OP_BUY @ 1.9640
New stop loss @ 1.9640
Pip Allowance @ 0
MT4 Time: 2006.12.21 08:26
Local Time: 2006.12.21 21:26

So how do I put this into my code ?

Please advise ?
 
Insert "\r\n" between lines

Symbol() + " OP_SELL @ " + DoubleToStr(OrderOpenPrice(),4) +"\r\nNew stop loss @ " + blah-blah-blah