標準のWindows8Javascriptストアアプリに次のコードがあります。
var test = document.getElementById("testButton");
test.addEventListener("click", function () {
var mailto = new Windows.Foundation.Uri("mailto:?to=my.address@here.com" + "&subject=test" + "&body=Hello,<br>How are you?");
Windows.System.Launcher.launchUriAsync(mailto);
私が抱えている問題は、私が何をしても、との間Hello,
でキャリッジリターンを取得できないことHow are you?
です。私は試しました\n
&\r\n
。キャリッジリターンを取得するには、何を挿入する必要がありますか?