I try to use CRLF in the following code:“\r\n” does not work.Any ideas?public bool Email_Sending(Email email, dynamic args) {
var myValuenew = args[“rsnew”][“Nachname”];
var myValueold = args[“rsold”][“Nachname”];
var myValueID = args[“rsold”][“KundeID”];
if (CurrentPageID() == “edit”) {
email.Recipient = “rkopp@secretpathtravel.com”; // Change recipient to a field value in the new record
email.Subject = “Record edited”; // Change subject
email.Content += myValueID + “\r\n” + myValuenew + myValueold;
}
return true;
}
Find the solution myself:
use “
” instead. ASP.Net Maker Help file example is wrong!
Use “
” for emails with html content and CRLF for emails with text content.