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

Help with a Mailto script

carluel
Registered: Nov 14 2008
Posts: 12

I have the code below for a button in a pdf file. It works well with outlook, but in Lotus Notes, all of the details are populated in the "To" field. Can someone pls. help me?

app.mailMsg(true, "name [at] company [dot] com", "","","My subject....","My body text.");

I also tried this, the subject and body gets populated correctly, however, the "To" field comes out empty:

app.mailMsg( {bUI: true,
EnterSendTo: "t [dot] [dot] [dot] [at] test [dot] comt",
cSubject: "This is the subject",
cMsg: "This is the body of the mail."} );

Thanks!

George_Johnson
Expert
Registered: Jul 6 2008
Posts: 1876
> EnterSendTo: "t [dot] [dot] [dot] [at] test [dot] comt",That line should be something like:

cTo: "<span class="spamspan"><span class="u">t [dot]  [dot]  [dot] </span> [at] <span class="d">test [dot] com</span></span>",
George
carluel
Registered: Nov 14 2008
Posts: 12
Tried that, still won't work.