Hello, I have the below script, which works perfectly fine except that it doesn't read the cCC. Anyone know what I am doing wrong? Event type: Click Object type: Button with control type Regular var subject = CC_request.REQUEST.DD_tool.rawValue + " " + CC_request.REQUEST.GEN_document_number.rawValue + " " + CC_request.REQUEST.GEN_document_type.rawValue; var myDoc = event.target; try { myDoc.mailDoc({ bUI: false, cTo: 'nancy.caroline@gmail.com', // Replace with actual receiver mail address. cCC: "nancy.caroline@gmail.com", cSubject: subject, cSubmitAs: "PDF" }); } catch (e) { // exception handling... } thanks in advance. Kr, Nancy
↧