New lines in email created in MX

My movie opens an email window with the users email client. They have already entered their details and some other data is pulled from the movie and entered into the email.

I can’t seem to create newlines or carriage returns in the email, so all the data (name, address, ph, email) just wraps on one line, eg.

Name: John SmithEmail: john.smith@web.comPh: 6546 5646Postal Address: 87 Eighty seventh StLambodiaRufus 1111

Inserting newline between variables doesn’t do anything.

Sample file attached.

on (release) {
	message = "Online order

Name: "+fname+" "+lname+"

Email: "+emailBox+"
Phone: "+phone1+", "+phone2+"Address: "+postal1+"
"+postal2+"
"+postal3+"

Order Details:
Outside upper left: "+aulText+"
Outside upper right: "+aurText+"
Outside lower left: "+allText+"
Outside lower right: "+alrText+"
Inside upper left: "+bulText+"
Inside upper right: "+burText+"
Inside lower left: "+bllText+"
Inside lower right: "+blrText;
	getURL("mailto:chris.w@optusnet.com.au?subject=Online order"+"&body="+escape(message));
}

Thanks Claudio, that works perfectly.

welcome :slight_smile:

claudio’s tha best :smiley: