In my requirement I need to implement email option. By default I have to open outlook as default composer. I am using below code to open outlook as default
var mailData = 'https://outlook.live.com/owa/?path=/mail/action/compose&to=' + actionData['to'] + '&subject=' + actionData['subject'] + '&body='+actionData['body']+'&CC='+actionData['cc']+'&bcc='+actionData['bcc']
window.open(mailData, '_blank', 'location=yes,height=600,width=900,scrollbars=yes,status=yes');
But CC,BCC property not working
How to resolve this error
CCandbcc... is case important?&in the body for example? have you tried moving cc and bcc before the body?ccfield is not implemented (I assume the same goes forbcc); but a comment points out that it applies to an outdated format (apparently, so does your question). I don't know if the new format supports those fields and how to use it, though.