Data from a field in "Mailto" online form

I would like to send an interactive PDF to thousands of students. They will complement the major part of the form, including details about one of their tutors (including e-mail address).

When the student submits their form I filled in the email address to be entered in the field "To" on customer given students of e-mail.

Is this possible using InDesign CC or Acrobat Pro? I don't know about J/S.


Thank you very much

Yes, it can be done. See this tutorial: https://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address

Tags: Acrobat

Similar Questions

  • How to handle data from multiple fields

    Hi all

    My data are:
    FldName           FldTypeCode          Text
    Sandya            02                         nothing
    Raj                 01                         12/Oct/2008
    Lokesh            03                          12546
    Harish             04                          12565.35
    King                01                          12/Nov/2007
    Cobra              02                          texttype
    In the user interface, I give all the data of three fields with refcursor. now in HQ DB happening all the values to be updated at the same time.
    (Q) now my question is how to update all values.
    For example: create procedure procdname (ip_allvalues in typerecord)
    is
    Start
    -statements;
    end;

    the procedure input parameter above can manage all data from three fields as they pass.
    (1) if the parameter handle, should what kind I create?
    (2) I need how can I update multiple records at once?

    Please can any body...
    Thanks in advance...

    sanjuv wrote:
    But when it goes to day it must pass all records at once (lines have almost 55) at a time not possible to update for all records but also not good to create input parameters for the procedure 55. If it has past a table how can I handle this situation.

    Why do you need to update all records at once? And what is blocking you implements a loop on the user interface which, for each changed row, submits an update of the DB? Note that you will get no improvement with a bulk operation when entering comes from a user interface.

    Alessandro Bye

  • data from one field to another field of text on the next page

    Hi all

    Hi I have a form that contains data from the data binding, the thing is the data maps to a certain text field and if this field is filled in, it should continue on the text field located on the page immediately after this one. the reason for using the text field instead of subform and make repeating is that the customer does not change the position and the structure of other fields as a result of this area, they are OK with the amount spilled in the following text field.

    is there a script for the same disease in Java script or form Calc.

    Thanks in advance.

    de1209

    It is not as simple as it sounds. You won't be able to split the field during bonding time. The entire string must go on the ground and only after that he completed the biinding can change us around. A colleague of mine did for an interactive field and it's a very complicated code. Here is a link to his blog entry that describes what she did:

    http://blogs.Adobe.com/lcdesigner/2008/07/an_example_of_splitting_text_a.html

    But this is only part of the problem... once separate you the information in two areas that you need to recombine into one field that the data submitted can represent correctly again. If you reverse the process in a preparatory stage.

    Make sense?

    Paul

  • How to get data from text fields in double.

    Here is the sample code that I had done with,

    var textf:textField;
    for(var i:int = 0;i<=7;i++)
    {
       textf = new textField;
       this.addChild(textf);
       textf.name = "textdata"+i;   textf.x = 500;  textf.y = 50+50*i ; 
    }
    nextbtn:button = new button();this.addChild(nextbtn)nextbtn.x = 400;nextbtn.y = 500;nextbtn.addEventListener(MouseEvent.CLICK,getdata);
    function getdata(e:MouseEvent):void
    {
       trace(textf.text)
    }
    

    From the code above will add six textfields, but in the next button function, it has to be traced back all the data in the fields of text I typed, but the code shown next button only the last textfield data are drawn, all data can be recovered, how do I get the data of all the textfields remaining...

    Please help me,

    Thanks in advance

    You can also watch the event 'target' to determine the object that generated the event.

  • How can I get the data from the drive of barcodes to forms

    Hi Experts,

    Forms 6i

    I would like to collect data from the barcode scanner.

    No idea if you got it please share.

    Thanks in advance.

    Hello

    I think that his works even as the keyboard.  You type the code manually or you can read it from a scanner.  With the help of the keyboard that you can able to type what anyone on the position of the cursor, in the same way the barcode scanner also works.  Just like a copy and paste the scanner copies the data from the physical device and paste it into your corrent cursor position.  There is no separate program encodings necessary for this work.

  • Is it possible to define the validation on a form field with data from another field in Adobe Acrobat?

    Thanks in advance for any help and advice. I am defining a validation for a field that ensured that the amount entered is 25% from another domain. I tried implementing a validation, but were unsuccessful. Can anyone offer any idea or solution? Thank you!

    You will need to use a script to do it. Something like this should do it:

    If {(event.value)

    Event.RC = true;

    var v1 = + this.getField ("NameOfOtherField") .value;

    If (event.value +! =(v1*0.25)) {}

    App.Alert ("the value entered must be 25% of the value of NameOfOtherField.");

    Event.RC = false;

    }

    }

    (This will check if the value is exactly 25% of the value of other... If you meant something else, please specify)

  • Extraction of data from XMLType field

    Sorry, I am not sure XMLQuery, this is probably a simple question.  I am trying to extract data in a tabular form of an XMLTYPE field.  I will use the following example to illustrate my question:

    WITH a (too)

    Select xmltype (')

    < bugStatus >

    < status >

    < > 111 bugCode < / bugCode >

    < number of bug = "12345" description = "Low severity bug" / >

    < / status >

    < status >

    < > 222 bugCode < / bugCode >

    < number of bug = "67890" description = "high severity bug" / >

    < / status >

    < / bugStatus >

    XMLDATA') of double)

    SELECT x.*

    A xmltable (' bugStatus/status

    by the way the columns in a.xmldata

    status_code number path "bugCode.

    ) x ;

    Run this code extracts block the "bugCode' fields successfully.  But I would also to extract the 'bug number' and 'description' fields.  Ideally in the independent columns.  But even if only as a single line 'number of bug =... description =... ". "I could still do it analyze with SQL.

    Can someone tell me please in the sense of how I can also extract additional data?

    Thank you!

    Attributes are processed by '@' so in your example (thank you), you can solve it through

    WITH a (too)

    Select xmltype (')

    111

    222

    XMLDATA') of double)

    SELECT x.*

    A xmltable (' bugStatus/status

    PASSAGE a.xmldata

    COLUMNS

    ROW_NUMBER for ordinalite,

    path number bugCode "bugCode."

    bugNumber path number "bug/@number."

    path of varchar2 (4000) bugDescription 'bug/@description '.

    ) x ;

    ROW_NUMBER BUGCODE BUGNUMBER BUGDESCRIPTION

    ---------- ---------- ---------- --------------------------------------------------

    1 111 12345 low severity bug

    2 222 67890 high severity bug

  • Data from the field drop-down list does not clear when the reset button is activated

    Acrobat Pro XI

    All field boxes are checked in the tab properties of the button actions... but when I click on the reset button of the form I created only the data in clear text fields, not any of the data that has been selected in a drop-down list.  What I am doing wrong?

    The 'rest shape' command returns the fields to their default values. If this

    value is not empty, that's what he'll be back.

  • Insert data from a field in another field in another table


    I am trying to copy the records from the source table

    in the dgpercentagedatachart table

    the domain name is feederid

    So that's what I came:

    INSERT INTO dgpercentagedatachart (feederid)

    Select source.feederid

    Of the source;

    This is the error I get

    Error from the 1 in the command line:

    INSERT INTO dgpercentagedatachart (feederid)

    Select feederid

    Source

    Error report:

    SQL error: ORA-01400: cannot insert NULL into ("GISELECTRIC". "" "" DGPERCENTAGEDATACHART '. "" OBJECTID')

    01400 00000 - "impossible to insert a NULL value in (%s)."

    I check that the two fields accept the NULL value, and they both said YES.

    What can I do?

    Excellent example. I get it.

    But, how can I put the id of object with it?

    Object_Id is the feeder_id # unique

    You can question him in the same table:

    INSERT INTO dgpercentagedatachart (feederid, objectid)

    Select source.feederid, source.objectid

    Of the source;

  • Combining the data from iptc fields

    Hello group. Happy new year.

    I'm looking for a script that could perform a copy action of data the fields City, state/province and country and adding that data for the description field. I always want to keep the content in the description field. My agency request this be done in order to create a photo caption more complete for posting on the web.

    Hoping that the list can help! Thank you

    Don

    Happy new year gift, hope you have a good!

    Please try this...

    #target bridge
    if( BridgeTalk.appName == "bridge" ) {
    combineFields = MenuElement.create("command", "Details to Description", "at the end of Tools","cft2012");
    }
    combineFields.onSelect = function () {
    if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");
    var sels = app.document.selections;
    for(var z in sels){
    var t = new Thumbnail(sels[z]);
    var md = t.synchronousMetadata
    var Desc = md.read("http://purl.org/dc/elements/1.1/",  "dc:description");
    var City = md.read("http://ns.adobe.com/photoshop/1.0/",  "City");
    var Country = md.read("http://ns.adobe.com/photoshop/1.0/",  "Country");
    var Region =  md.read("http://ns.adobe.com/photoshop/1.0/",  "State");
    var DescAll = Desc + "\r" +City + "\r" + Region +"\r" + Country;
    var myXmpFile = new XMPFile( t.spec.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);
    var myXmp = myXmpFile.getXMP();
    myXmp.deleteProperty(XMPConst.NS_DC, "description");
    myXmp.setLocalizedText( XMPConst.NS_DC, "description", null, "x-default", DescAll );
    if (myXmpFile.canPutXMP(myXmp)) {
            myXmpFile.putXMP(myXmp);
             myXmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
            }
        }
    }
    
  • extract data from blob field containing xml data big

    I'm working on Oracle 11 g 2, 11.0.2.0.3. UNIX database server.

    my oracle instance receive large xml data service web ftp, I put this file as blob in a table called TBL_ALERT_XML (ID_ALERT NUMBER, DATE of the TIMESTAMP_ALERT, ALERT_XML BLOB).

    My goal is to get data of BLOB content e file put in one or more other tables.

    I try with the opening of a cursor on

    SELECT XMLTYPE (UTL_RAW.cast_to_varchar2 (ALERT_XML)). Extract (' alerts/points/point / / Text () ') threads

    OF TBL_ALERT_XML

    without any filter on ID_ALERT.

    But I get the error:

    ORA-22835: buffer too small for to CHAR CLOB or BLOB to RAW conversion



    Please help me, thank you very much

    Because the web service is deployed in python and my co worker is not able to call a stored procedure with the parameter xmltype, but only with the setting of the BLOB.

    If you can't get around it, so be it. All the less, using CLOB would be better.

    However, which prevents you to convert BLOB XMLType entry within the stored procedure and store it in an XMLType column.

    To do this, simply use the XMLType of BLOB.

    create table tbl_alert_xml)

    number of id_alert

    date of timestamp_alert

    alert_xml xmltype

    );

    insert into tbl_alert_xml

    values)

    1

    sysdate

    xmltype (p_blob

    , nls_charset_id ('AL32UTF8') - put the encoding of the file here

    )

    );

    Then, you will be able to execute queries optimized using XMLTABLE.

  • Data in a field in the subject line w/o using JS

    I want to use the action to "Submit a form" so I can apply the required fields.

    I can place the custom text in the subject line by using the following

    mailto: [email protected] ? subject = subject text goes here

    Is it possible to include data from a field in the row object in addition to my custom text?
    For example, if T12345 is the data in a text field, I want my subject line read: "T12345 application form.

    With the help of Acrobat XI

    This tutorial explains how use the data in a field as the e-mail address for the email, but it can be easily adjusted to be instead the subject line: https://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address

  • format of return data from email

    Hi all
    I'm building a basic "contact me" email page to return, and it works, at least in part.
    (this is the good news)

    the new 'bad' is...
    When I fill in the blanks above in the swf file and click on send, it opens my e-mail ("mail" - mac) fills my correct email address, and then puts ALL the information, not only the news of a subject line in the object window. Is there a way to tell the code to the subject line "jb3_contact" in the subject of the e-mail, then "tab" for the region of the body of the email to pour out their name, email and message?

    looks like what my email subject line: (what I typed in the fields of swf)
    Subject: jb3_contact: = name: jim Email: jimsbook.com Message: hey "retarded"...

    I guess I would as the subject line to be "jb3_contact" ONLY. and their info message in the 'body' of their email box.
    as:
    Name: Jim
    E-mail: jimsbook.com
    Message: hey "retarded"...

    instances of text field:
    name [iptxt_name]
    Email [iptxt_email]
    MSG [iptxt_msg]

    I would appreciate any thoughts...

    best,
    POW


    After the code on the button "send":

    [code] //email send info button, for the area "contact me."

    on {(press)

    These statements simply read data from input field
    and print them in the output to the debug window

    trace (this.iptxt_name. (Text);

    trace (this.iptxt_email. (Text);

    trace (this.iptxt_msg. (Text);

    Save the return e-mail address

    returnEmail = this.iptext_email.text;

    Create an empty string variable to store the data

    urlData = "";

    Assemble the data in the fields in the new variable

    urlData += "Name:"+ this.iptxt_name.text + newline +""; "

    urlData += "Email:"+ this.iptxt_email.text + newline +""; "

    urlData += "Message:"+ this.iptxt_msg.text + newline +""; "

    print the url data in the output to the debug window

    trace (urlData);

    Send emails with the user input data

    getURL ("mailto:[email protected]?subject=jb3_contact=" + urlData);

    }

    > > > > > > > > > > > > > > [/ code]

    Hello kglad,.
    I thank you very much for this, add your one line with another addition did exactly what I needed.

    other extra line:
    "Add another variable (body in this case) in the mailto and use '0% ' rather line break.
    (see code below)
    .. .that does exactly what your code, with essentially a carriage return, between for readability.

    perfectly executed email sending:

    subject (in the subject line, to share)
    and then:
    "Name: Jim lastName."
    E-mail: [email protected]
    Message: hey Jim how you are such a "retarded"? "
    all stacked and clear the area of the body.

    Thanks much kglad.

    best,
    POW.

    code below is to create one email back a 'contact me' form that you create in flash.

    text entry fields have names of occurrence as follows:
    name (iptxt_name)
    E-mail (iptxt_email)
    message (iptxt_msg)

    last line of code just has my email that I want him to be, and what I want in the subject "jb3_contact".

    hope this helps someone else.


    E-mail send info button, for the area "contact me."
    on {(press)

    These statements simply read data from input field
    and print them in the output to the debug window

    trace (this.iptxt_name. (Text);
    trace (this.iptxt_email. (Text);
    trace (this.iptxt_msg. (Text);

    Save the return e-mail address

    returnEmail = this.iptext_email.text;

    Create an empty string variable to store the data

    urlData = "";

    Assemble the data in the fields in the new variable

    "urlData +=" Name: "+ this.iptxt_name.text+"%0A;
    "urlData +=" Email: "+ this.iptxt_email.text+"%0A;
    "urlData +=" Message: "+ this.iptxt_msg.text+"%0A;

    print the url data in the output to the debug window

    trace (urlData);

    Send emails with the user input data

    getURL ("mailto:[email protected]?subject=jb3_contact&body=" + urlData);

    }

  • Add the data in a field of multiple selection?

    Just got got off the phone with the support of Eloqua ask about the possibility of adding data in a field of multiple selection over time. Apparently, it's possible through mailings of form, but no list will be mailed.  Wouldn't be great if during a download list, you had the ability to add data from a field in your file .csv for existing values in this area in Eloqua.  Here's a use case for this scenario... in our society of industry can be part of multiple market segments.  Depending on the event, a person can feel they are part of the market segment 'Radar', but another event specializing in Sonar... they indicate that they are part of the market segment "Sonar", both being true.  There is currently no easy way to enter these data in Eloqua over time as part of the downloads from the list.  Based on the scenario above, the existing value is 'Radar', but if "Sonar" is the value of the field for the next download it replaces the value of 'Radar '.  Ideally, we would be able to capture the two values.

    I said that if there is enough interest in this idea, Eloqua would consider developing a new option for downloads from the list add vs crush.  I hope others can find a use case for this idea.

    Hi Tina,

    I know it's a bit old but I had a simular problem on adding values to a multi select.  Here's how I approached it.

    1. Add a text based contact field Eloqua to transfer your csv values.  Let's call it "MultiSelect download Value" for this example.

    2. Add Eloqua add values to a multiselect contact field.  What we'll call "MultiSelect Final.

    3. create a program that will add the download list.

    4. in the program, create a step to update Contact data

    . in the update rule, update "Definitive MultiSelect' field, Append the value in the field value, value will be hardcoded, check use a delimiter": ", marks the conditional rule the field" value to download MultiSelect "equals the value hard coded or one that you would like the field to be.

    b. create all update settings you need for your data.

    I approached this way because our downloads from the list should be add the data over time.  The field ' value to download MultiSelect ' allows it to be overwritten on each download.

    Let me know if you want more details.

    Thank you

    Blake

  • Import data from microsoft great Adobe acrobat XI

    Hello

    I am referring to an object of the adobe support page. German Version can be found here. A quote from the site are under discussion.

    I want to import data from an excel sheet in adobe pdf format. I created some forms that have the same names as the columns (to be more precise: the first line) in the excel worksheet. How I export data from excel?

    I exported the "tab-separated-Tex", but I found an error in adobe saying that the txt could not be imported. Can someone tell me how to export the data correctly?

    Is there another way?

    Thank you very much! Questions or remarks are welcome!

    Edit1: I would appreciate a person displaying a file "adobe acrobat" forms a txt for example. That make you much easier, if all goes well. Thank you!

    Import form data

    In some stream work, particular scenarios present filled with forms as data only files and not as a complete PDF files. These files are not PDFs, but use a different format, such as FDF or XML. You can view the data provided by an individual recipient in the context of the PDF by opening the original file and importing the information contained in the data file.

    1. In Acrobat, open the PDF form in which you want to import data.
    2. Choose Tools > forms > clear form.
      Note: When you import data from another file into a PDF form, the imported data will replace any information that was previously included in individual form fields. However, if the imported data file contains one or more blank form fields, the import does not clear the original data.

    3. Choose Tools > forms > more form Options > manage form data > import data.
    4. In the Select file containing Form Data dialog, select a format in the file of Type corresponding to the data file to import. Locate and select the file, and then click Open.

      Note: Some formats are only available for specific types of PDF forms, depending on the application used to create the form, like Acrobat or Designer ES2. Data you're importing a text (.txt) file must be formatted in rows, delimited by tabs that form columns.

    I think it would be better for you to put a blank form and a sample data file so that we can test it and check why it does not work.

Maybe you are looking for

  • Tecra A7-117 T2300------hardware compatibility with Linux SuSE or RedHat?

    Hello world I'm a linux newbie and I tried installing SuSE Linux 10.0.But the graphics of the docking station and for the network adapter card is not recognized. The graphics card is ATI Mobility Radeon X 1400 HyperMemory and the ATI driver is availa

  • Change a few Danish letters on the keyboard

    HI-Can someone tell me how to change the two buttons next to each other? On the two buttons, he said two Ae O which is 2 Danish letters I would change so when I press the Æ button it will type O instead, which is also the button and of course vice ve

  • Satellite P300-156 and WXP - audio driver error

    Well I have downgraded from Vista to XP SP2 and now I tried to install the drivers and patches, but none of them work, and I googled and searched this forum and I can't find anything useful. It shows an error saying it can find t the MEDIA machine.Pl

  • The UI freeze

    Compared to my previous post, I am trying to create an image to display in the user interface, which has a sweeping movement to go to the next/previous photo. When loading of the UI, it creates 5 views of the image and calls setImageSource on each of

  • Fields of rotation and repaint

    Hello I am currently having problems with a screen that I develop, I run a my own implementantion of a textField that basically stretches from textField but excludes a height and width figures and therefore attracts.  The problem is that I overloaded