How can I add a third e-mail address to a submit button?

Right now it's only limited to two addresses.
The form in question is here: http://www.ucmexus.ucr.edu/resources/Final_Narrative_Report_CONACYT.pdf
I need to add a third person to the existing addresses in the submit button.
Using Acrobat X Pro.

To bcc out of acrobat is going to be very tricky as you will have to run a script in order for the form to identify the bcc line. It will look something like the following. You will have to pair this script with a button to intialize the event script. I will chaeck and see if there is a script for acrobat but your best bet is to go the livecycle route.
form1.#subform[0].Email::initialize - (JavaScript, client)
// add names and email addresses to the "To", "CC" and "BCC" lists
var recipientList = new Array(new Array("John", "[email protected]"), new Array("Lisa", "[email protected]"),
  new Array("Paul", "[email protected]"), new Array("Steve", "[email protected]"), new Array("Tracy", "[email protected]"));
To.clearItems();
CC.clearItems();
BCC.clearItems();
for (var i = 0; i < recipientList.length; i++)
To.addItem(recipientList[i][0], recipientList[i][1]);
CC.addItem(recipientList[i][0], recipientList[i][1]);
BCC.addItem(recipientList[i][0], recipientList[i][1]);
form1.#subform[0].Email.BCC::change - (JavaScript, client)
var email = this.boundItem(xfa.event.newText); // get recipient email address
var newSubject = null; // set this to a new subject if you want
var emailSubmitNode = FindSubmitNode(EmailSubmitButton);
if (emailSubmitNode)
function FindSubmitNode(button)
if (button == null)
  return null;
var eventList = button.resolveNodes("event");
for (var i = 0; i < eventList.length; i++)
  var eventNode = eventList.item(i);
  if (eventNode.activity == "click")
   // found the click event -- look for the child <submit> node
   if (eventNode.submit != null)
    return eventNode.submit;
return null;
form1.#subform[0].Email.CC::change - (JavaScript, client)
var email = this.boundItem(xfa.event.newText); // get recipient email address
var newSubject = null; // set this to a new subject if you want
var emailSubmitNode = FindSubmitNode(EmailSubmitButton);
if (emailSubmitNode)
function FindSubmitNode(button)
if (button == null)
  return null;
var eventList = button.resolveNodes("event");
for (var i = 0; i < eventList.length; i++)
  var eventNode = eventList.item(i);
  if (eventNode.activity == "click")
   // found the click event -- look for the child <submit> node
   if (eventNode.submit != null)
    return eventNode.submit;
return null;
form1.#subform[0].Email.Send::click - (JavaScript, client)
function GetEmailList(listField)
var emailList = "";
for (var i = 0; i < listField.length; i++)
  if (listField.getItemState(i))
   // item is selected -- append its email address to the email list
   if (emailList.length == 0)
    emailList = listField.getSaveItem(i);
   else
    emailList += "," + listField.getSaveItem(i);
return emailList;
function FindSubmitNode(buttonField)
if (buttonField == null)
  return null;
var childList = buttonField.nodes;
for (var i = 0; i < childList.length; i++)
  var childNode = childList.item(i);
  if (childNode.className == "event" && childNode.activity == "click")
   // found the click event -- look for the child <submit> node
   if (childNode.submit != null)
    return childNode.submit;
return null;
if (To.rawValue == null)
xfa.host.messageBox("Please choose a primary recipient in the 'To' field.");
else
var submitNode = FindSubmitNode(EmailSubmitButton);
if (submitNode)
  var toList = GetEmailList(To);
  var ccList = GetEmailList(CC);
  var bccList = GetEmailList(BCC);
  var newTarget = "mailto:" + toList;
  var optionList = new Array();
  if (ccList.length > 0)
   optionList.push("cc=" + ccList);
  if (bccList.length > 0)
   optionList.push("bcc=" + bccList);
  if (Subject.rawValue != null && Subject.rawValue.length > 0)
   optionList.push("subject=" + Subject.rawValue);
  if (Body.rawValue != null && Body.rawValue.length > 0)
   optionList.push("body=" + encodeURIComponent(Body.rawValue));
  for (var i = 0; i < optionList.length; i++)
   if (i == 0)
    // special case for the first option: a "?" must separate the options
    //  from the recipient ("to") list
    newTarget += "?" + optionList[i];
   else
    newTarget += "&" + optionList[i];
  console.println("before: " + submitNode.target);
  // set the email submit button's new target information
  submitNode.target = newTarget;
  console.println("after: " + submitNode.target); 
  // execute the email submit button with the new target information
  EmailSubmitButton.execEvent("click");
else
  xfa.host.messageBox("Unable to configure email submit button!");

Similar Messages

  • How can you add an image in Mail without being an attachment?

    How can you add an image in Mail without being an attachment?
    In otherwords I'd like to put my logo in the email not as an attachment but as an image.
    Is there a simpel solution to this problem?

    PBN1 wrote:
    How can you add an image in Mail without being an attachment?
    You don't.
    It's not possible. The e-mail protocol is designed for text; anything else has to go as an attachment.
    Different mail clients (such as Mail.app, the mail client bundled with Mac OS X) may have different ways of handling such attachments, but they are still attachments. Each mail client has its own rules and methods, so one may display a picture as if it were in the body of the message, but another client may do something completely different.
    A way of faking it is to format your message in HTML (which is a kind of text). The image is hosted on a remote server, not added to the message; instead, you include a link to it in the body of the message, as you would when building a web page. (This is also what the two tips helpfully provided by X423424X do, except that the link to the image is added in the signature, rather than the body of the message.) What exactly happens to it is, again, at the discretion of the mail client. In my case, for instance, displaying images in HTML messages is turned off, and will stay resolutely off.

  • How can i add image on my mail siganature on iphone

    hi,
           how can i add image on my mail siganature on iphone.

    I do not know if this will work but you can try. Place the image you want on a storage site like Imageshack or Photobucket. Then make a link to it in your signature using (img_src="put the url of your image here"). This may work at least when you have an active data connection - wifi or cellular

  • How can I restore my icloud e-mail address?

    How can I restore my iCloud e-mail address?

    You can't change and iCloud email account address once created.  You can either create a new iCloud account, or add an @icloud.com email alias address to the existing account, which will receive email in your existing iCloud inbox (more details here: http://help.apple.com/icloud/#/mm6b1a490a.
    If you would rather create a new account and keep your data, start by saving any photo stream photos on your phone that you want to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  If you are syncing notes with iCloud that you want to keep, you'll need to open each of your notes and email them to yourself so you can later copy and paste the text into new notes created in your new account.  Then go to Settings>iCloud, tap Delete Account, provide the password to turn off Find My iPhone and choose Keep on My iPhone when prompted.  Then sign back in with a different Apple ID to create your new account and choose Merge to upload your data.  When you turn Mail on you will be asked to create your new iCloud email address.  Type carefully as it cannot be changed later.

  • How can I create a new E-mail address for the Marketing Manager

    Hullo,
    how can I create a new E-mail address for the Marketing Manager (i.e. marketing professional role in SAP CRM) please.
    That when you go and create a new E-mail campaign you need to choose an E-mail form in addition to the E-mail address of the Marketing Manager.
    Kind Regards.

    Hi Alhussien
    Add it to his Position in the Organisational Model. Transaction PPOMA_CRM.
    Under there address section is an option to populate the email address.
    Regards
    Arden

  • How can you use the same e-mail address for multiple ipads?

    I have two iPads.. an iPad and an ipad 2.  I registared my new ipad 2 and now my old ipad is will not let me log on and is telling me that my e-mail address is already in use.  how can you use the same e-mail address for multiple ipads?

    And by using the same Apple ID you can also share purchases.  If you have a different Apple ID for each iPhone then you can't share purchases.

  • TS1645 I want to change my ID and when I try to it says that that e-mail cannot be used for my id because it is my "rescue" email address. How can I change my "rescue" e-mail address?

    I want to change my ID and when I try to it says that that e-mail cannot be used for my id because it is my "rescue" email address. How can I change my "rescue" e-mail address?

    Go to My Apple ID (appleid.apple.com), click "Manage your Apple ID," and sign in.
    With the Name, ID, and Email Address drawer selected, click Edit next to Apple ID and Primary Email Address.
    Enter your new email address.
    Click on Password and Security;
    Answer the security question;
    Delete your email from rescue address;
    Do logout and login again into manage your apple id;
    Go back to Name, id and email address;
    Change your primary email address;
    Verify your email address.

  • HT5621 how can I delete a primary e-mail addresse and replace it with a excisting Apple ID?

    How can I delete a primary e-mail address and replace it with a excisting Apple ID?

    An email address can only be used one account at a time, so if you want to replace it with an email address that is currently being used on another account then you will need to remove it from that account first before trying to put it on that account. You should be able to change the email address either by logging into your account on your computer's iTunes via the Store > View Account menu option, or via http://appleid.apple.com

  • How can I add a postbox in mail by iPad os5, now Ihave only incoming and. Trash

    How can I add a mailbox / postbox on my iPad os5, now I have only incoming and trash

    If it's an IMAP type account then you should have had an Edit button at the top of the current list of folders for that account - if it's a POP type account then it doesn't look like you can add folders (I can't add them to my POP account and other people have reported the same thing)

  • How can I add a non icloud email address to icloud

    how can I add a non icloud email addres to icloud

    You can't. iCloud uses its own email accounts @icloud.com

  • HT201342 Can I add my company e mail address to my icloud?

    ,?can I add my company e mail to iPad

    You can't add a non-icloud email address to iCloud.  You can add an alias email address, but it will have an @icloud.com domain, see http://support.apple.com/kb/PH2622).  You can add your company email account to your device in Settings>Mail,Contacts,Calendars>Add Account, but it won't be an iCloud account.

  • How can I add now a rescue email address

    how can I add now a rescue email address

    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Click Manage ID, log in, then enter the alternate address you wish.

  • How can I add a third line of text to a title?

    I am making a music video for my highschool students to teach about recycling and I want to add a title to the bottom with the song title, the name of the ficticious band and the ficticious record label.
    I have tried to add the third line of text, but I can't seem to figure out how. the title needs to be superimposed on the actual video, so adding in a clip created in photoshop or something won't work. Think about the titles you'd see at the begginning and end of a music video, and that's pretty much what I am going for.
    Any suggestions?
    Thanks
    PS this is my first post and my first mac, so be gentle

    Bubbalouie123754 wrote:
    ....  the title needs to be superimposed on the actual video, so adding in a clip created in photoshop or something won't work. ....
    It does.
    The whole trick is to use a transparent background and using .png as file-format for your superimposed graphics:
    illustrated advice on my site
    https://sites.google.com/site/karstenschluter/imovie09tricks
    'Creating new titles'
    (advice was for vers09, does work in vers11)
    … and Welcome, Bubbalouie, to the ASC ...

  • How can I add RSS feeds to Mail in Mountain Lion?

    There is no longer an option in mail in the File menu, to add RSS feeds to Mail.  When I am in Safari and click on the "Reader" button it gives me directions to go to mail, and click "Add RSS Feed" in the File menu but that option is not there when I am in Mail.  Any suggestions? 

    Welcome to Apple Communities
    RSS aren't supported. Use a reader

  • HT201342 how can I change my iCloud e-mail address?  It's spelled incorrectly.

    I spelled the e-mail address incorrectly when I signed up for the iCloud service but didn't notice it until it was set.  How can I change the address to be spelled correctly?  If it means deleting the incorrect one and then adding the correct one I can't figure out how to do that either!
    Jerry

    You can't change and iCloud email account address once created.  You can either create a new iCloud account, or add an @icloud.com email alias address to the existing account, which will receive email in your existing iCloud inbox (more details here: http://help.apple.com/icloud/#/mm6b1a490a.
    If you would rather create a new account and keep your data, start by saving any photo stream photos on your phone that you want to keep to your camera roll (unless already there) by opening your my photo stream album, tapping Select, tapping the photos, tap the share icon (box with upward facing arrow), then tapping Save to Camera Roll.  If you are syncing notes with iCloud that you want to keep, you'll need to open each of your notes and email them to yourself so you can later copy and paste the text into new notes created in your new account.  Then go to Settings>iCloud, tap Delete Account, provide the password to turn off Find My iPhone and choose Keep on My iPhone when prompted.  Then sign back in with a different Apple ID to create your new account and choose Merge to upload your data.  When you turn Mail on you will be asked to create your new iCloud email address.  Type carefully as it cannot be changed later.

Maybe you are looking for

  • Flash works in IE and not Firefox

    Hello All, Below is a piece of html code I am using to view an embeded flash movie. As you can see the file is located on my hard drive - this (the .swf file on the hard drive) is being used to simulate content that will eventually be placed on a CD.

  • How to get the index of the clicked button on TOOLBARBUTTONCHOICE

    Hello Experts,    I have used toolbarbuttonchoice and created the dropdown list of the buttons dynamically. now when any of the button is clicked i need to get the reference of the button to call appropriate code in the action, but i am unable to get

  • My phone is carrier locked how do I unlock it?

    I sent my iphone for repair and apple replaced it. Now my carrier won't unlock it because it is not the phone I started with.

  • Printout is different then print preview in smartforms

    hi all, i had created one smartform, but when i check the print preview it is showing desire output but when i print the form second page data is coming in BOLD, can someone please help me in this.?? points will be rewarded as per the solution. thans

  • Time Machine crashes whenever the computer goes to sleep or into screen saver mode.

    Apologies if there is an obvious answer or post about this.  Every time I try to initialize Time Machine, it will begin backing up until the computer goes to sleep or the screen saver kicks in.  When I wake the computer up, I get a message that says