I need to attach large textarea content to mail with following code.
location.href="mailto:a@example.com?subject=example&body="+encodeURIComponent(document.getElementById("listbox").value);
However there is a limit length for textarea characters when it exceeds, it doesn't work. I tried with variable and attach to email; however again variables have limits. How can I attach large strings to an email? Thanks for help...