Newline not being read

Newline not being read

Here is my Code. Not sure what is going wrong here. The newlines are not being read into the send mail task. 

entry = "Type: " + name + "\nDescription: " + desc + "\nNote: " + outbound + "\n";
if ( table.len() + entry.len() < 5000 ) 
    {
table = table + entry;
    }
else 
    {
table2 = table2 + entry;
    }
}
sendmail
from : zoho.adminuserid
to : "placeholder"
subject: "Conditions for Borrower"
message : "Your loan has been approved.\n\n These are the conditions required:\n"+table+table2
]