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