These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

myDoc.mailDoc will not cCC: if a .rawValue is being used for cTo:

brennanhobart
Registered: Oct 9 2007
Posts: 37
Answered

For some reason if you have a .rawValue either cTo: or cCC: outlook will only email the .rawValue and nobody else. Here is what I'm using.

var myDoc = event.target;
myDoc.mailDoc({bUI:false, cTo:AuthSignEmail.rawValue, cCC:"duncanrl [at] missouri [dot] edu", cSubject:"..", cMsg:"..."});

Has anyone else had this issue? Thanks, Brennan.

My Product Information:
LiveCycle Designer, Windows
thomp
Expert
Registered: Feb 15 2006
Posts: 4411
You have an error in the "CC" input argument name, it's "cCc". Fix this and it will work.

Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script

brennanhobart
Registered: Oct 9 2007
Posts: 37
Thom: Thank you so much! Your solution fixed the issue and the form works perfect. Brennan