var email_text = "I have a new question about SAS code for this ebook." + " I have included my question here:\n ----------\n\n\n\n\n\n ----------\n"; var email_subject = this.ebook_title + " (new question)"; window.open("mailto:name@email.com?subject=" + escape(email_subject) + "&body=" + escape(email_text));In Chrome I get the following (which is what I'd like to see!):
I have a new question for this ebook. I have included my question here: ---------- ----------In the encapsulated Windows app I get the following:
I have a new question for this ebook. I have included my question here: ---------- ----------What do I need to put into the mailto: string to produce new lines? I've tried using \r\n, %0D%0A, %0A and
, but none of these work. ............Phil

