I have created a form which gets copied to outlooks body to send email. I just completed the form and now i noticed that not all the contents in my form are getting copied to my outlooks body.My form has over 100 lines. So I was wondering if its the size that is causing this issue. Below is my code to send email -
$('.btnSendEmail').click(function (event) {
var email = 'example@email.com';
var subject = 'Creation Checklist';
var emailBody = $('#holdtext').val();
window.location = 'mailto:' + email + '?subject=' + subject + '&body=' + emailBody;
});
My initial forms code is here