Form data sent to email in a table. (How do I?)

What I am trying to do is take the data input from a form, and have that data sent via email within a table.
Example:
Header 1
Header 2
Name:
John Doe
Email:
[email protected]
Company:
johns plumbing
Phone:
555-555-5555
Comment:
This is my comment
Right now it sends the email fine, but it is in plain text (UGLY)
Here is my PHP (ignore the check boxes they are going to be replaced with text fields that will go into the table):
          Please correct the following error:

Remove this patch of code:
$message = "$company has submitted a problem via Problem Ticket Form.
Name: $name
E-mail: $email
Company: $company
Phone Number: $phone
I am having issues in the following areas:
$problem1
$problem2
$problem3
$problem4
Comments:
$comment
End of message
Use PHP to create a table within your message body:
    $message = '<table border="1">';
    $message .= '<tr>';
    $message .= '<td>E-mail :</td><td>'.$email.'</td>';
    $message .= '</tr><tr>';
    $message .= '<td>Company :</td><td>'.$company.'</td>';
    $message .= '</tr>';
    $message .= '</table>';
The above script will capture Email & Company. But you should get the idea. Add all the desired fields within here by creating new <tr> rows/ columns.
And your existing script will do the rest of mailing this out as a 'table'.

Similar Messages

  • Managing Form Data XML files emailed

    I am exploring the use of the Email Submit button in a PDF Form. We need to collect form data sent in by many users. The one thing that seems like a challenge is that when people email their data back, then XML file containing their data will always have the same file name. I like the "Merge Data Filed into SpreadSheet" functionality, but what I'm sruggling with is how to best manage all of the xml data files, as they are emailed in, since the attachments will all have the same filename.
    Am I missing something, or will it just be necessary for the person managing the email box to extract each attachment & give it a unique name? I saw that someone has asked at one point is there was a way to have a unique filename for the attachment generated each time a user clicked the Email submit button, but it looked like the answer was No.
    Any suggestions for best practices when collecting emailed form data & collecting it all into and XLS or CSV?
    Thanks in advance!

    "Am I missing something, or will it just be necessary for the person managing the email box to extract each attachment & give it a unique name?"
    Yes. When they are detached from the email they should be given a unique name and that way you can build a dataset from the responses.

  • Javascript for exporting form-data from spawned pages in csv-table

    Hello,
    I need your help with a problem concerning acrobat.
    I created a form. The user can spawn new pages from a template.
    The fields have the format Pn.templatename.fieldname, for example: P0.form.kosten1
    The user fills the form, saves the file and sends it to me.
    Now I have to get a CSV- or Excel-Table from this Data.
    The Export-Function doesn't work, because of the different fieldnames.
    Does Javascript work?
    Perhaps I can create a 2-dimensional array and then write it to a csv-file??
    Has anyone a good Idea?
    Thank you for helping.
    Many greetings,
    Thomas

    The only way I've found to do this is to open the form in Acrobat, click Forms, mouse over Manage Form Data, then click Export Data. Your only options are to save as .xml or .xdp. I saved my data as .xml. I was then able to import the .xml file into excel by clicking Data, mousing over xml, clicking Import... and browsing to the Acrobat generated .xml file. I know this is convoluted but it's the only way I've found to get the data into a spreadsheet. Acrobat exports the data as filename_data.xml, i.e. a form named contacts will export it's data as contacts_data.xml. Be aware, I've only tested this on a form that had a table in it and nothing else. If your table is part of a form with other fields in it I have no idea how the other data will look after exporting.

  • IPhone users unable to view PDF fillable form data?

    I've created a form that my staff use to send quotes to our customers.
    The form is sent via email using the submit a form button as 'PDF The complete document'.
    I spent several days testing the form to ensure that everything worked correctly and as far as I could tell everything seemed fine.
    Unfortuntately, several of our customers who own iPhones have informed us that the form arrives blank. None of the fields are showing any data or information that my staff filled in.
    I've read several posts online and they all suggest this is to do with the version of Adobe that is pre-installed on iOS devices. If Adobe Reader is downloaded on the iPhone it should read the form properly.
    Is there any way around this? Ideally I don't want my customers to have to download something before they can read our quote.
    Also several of the text fields have javascript attached to them which I would like to keep, such as the 'Link' text field (it has a hyperlink javascript attached). I considered sending the quotes as a .jpg file instead but this would mean losing these features which took so long to build into the quote.
    I've attached a sample version of my form in case it helps.
    Sample
    Any advice would be much appreciated.
    Thanks,
    Sabri

    I'd suggested flattening the form fields, which converts them to regular page contents. There won't be any interactive fields after you do this though. It is possible to flattten just certain fields so that your script would still work if the form is viewed in a compatible PDF viewer, but this would require a custom script.
    Here's a link to a free JavaScript-based tool that you can use to flatten the fields: http://www.uvsar.com/projects/acrobat/flattener/
    It could be customized to exclude certain fields.

  • OIM 11g: Email template - child table columns

    Hi All
    How can I fetch the child table (process form child table) columns in the OOTB email templates. When I select Process form data on the email definition screen on Design console, I am only able to select the main process form's columns.
    Please help. Its urgent.

    OOTB not possible you have to write code for fetching child data.
    I suggest send mail using custom code and fetch child data using OIM APIs.

  • CDOSYS  sending Form Data

    I have tried every combination of trying to get form data
    sent in an email without any luck.
    objMail.txtEmail = Request.Form("Email")
    or
    objMail.txtEmail = Request("Email")
    If I take out the form elements I can get the system to send
    me a hardcoded email
    Can ANYONE tell me how to add a form variable into an email
    using CDOSYS.
    I am trying to use this as part of an insert, for members who
    add thier details to our database I want to be able to send an
    email to someone to be aware who has just been added.
    I rely need an answer to this...I have to get this up and
    running tomorrow
    When answering, can you advise were abouts in the script
    elements should be placed.
    ANY help would be appreciated

    i have had luck with this email code
    place before your insert record coding
    <%
    Dim ObjSendMail
    Set ObjSendMail = CreateObject("CDO.Message")
    'This section provides the configuration information for the
    remote SMTP server.
    ObjSendMail.Configuration.Fields.Item ("
    http://schemas.microsoft.com/cdo/configuration/smtpserver")
    ="127.0.0.1"
    ObjSendMail.Configuration.Fields.Item ("
    http://schemas.microsoft.com/cdo/configuration/smtpserverport")
    = 25
    ObjSendMail.Configuration.Fields.Item ("
    http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout")
    = 60
    ObjSendMail.Configuration.Fields.Update
    'End remote SMTP server configuration section==
    if Request.Form("Submit1") = "Send Form" then
    ObjSendMail.To = Request.Form("textfield")
    ObjSendMail.CC = "[email protected]"
    ObjSendMail.BCC = "[email protected]"
    ObjSendMail.Subject = "RE:golf tournament entry form is
    attached"
    ObjSendMail.From = "[email protected]"
    ' we are sending a text email.. simply switch the comments
    around to send an html email instead
    'ObjSendMail.HTMLBody = Request.Form("textfield")
    ObjSendMail.TextBody = ObjSendMail.TextBody &
    cStr(Request.Form("textfield"))
    ObjSendMail.TextBody = ObjSendMail.TextBody & "" &
    vbCrlf & ""
    ObjSendMail.TextBody = ObjSendMail.TextBody & "Thank you
    for entering this years Panhandle Charitable Open"
    ObjSendMail.TextBody = ObjSendMail.TextBody & "" &
    vbCrlf & ""
    ObjSendMail.TextBody = ObjSendMail.TextBody & "Entry form
    is attached"
    ObjSendMail.TextBody = ObjSendMail.TextBody & "" &
    vbCrlf & ""
    ObjSendMail.TextBody = ObjSendMail.TextBody & "Please
    print form, fill out and mail in with your entry fee"
    ObjSendMail.TextBody = ObjSendMail.TextBody & "" &
    vbCrlf & ""
    ObjSendMail.TextBody = ObjSendMail.TextBody & "" &
    vbCrlf & ""
    ObjSendMail.AddAttachment Server.MapPath("/entryform.doc")
    ObjSendMail.Send
    Set ObjSendMail = Nothing
    end if
    %>

  • How can i submit form-data with acrobat pocket pc

    how can i submit form-data (http-post) on a PPC?
    how can i store the data offline?
    which submit-functions are availabe for the pocket pc reader?
    do i need ARES?
    where can i find a documentation of of the available functions for the ppc version?
    where can i fond form-samples for ppc?
    from the docu on my pocket pc:
    Submit form data using handheld devices over a wireless connection. If you are working offline, the data is temporarily stored, then submitted once a connection is established. Send forms by e-mail or directly to the destination server using a cradle or cable

    To your question regarding the Pocket PC version of Reader, I downloaded Adobe Reader for Pocket Pc 2 and installed it on my HP iPAQ . I then loaded my test PDF file onto the iPAQ. The Reader for Pocket PC preformed an email submission fine. However, I received no indication that anything happened when I tried an HTTP Post. So I think you can only do an email submission.
    In general, I have been testing to see how much I can do without the Live Cycle Reader Extensions, since for sure I will never be able to purchase them. What I have found is that for Acrobat Reader 7, the email submission works for all of the people I have asked to test it, but the HTTP Post has worked for only one of the two people who have tested it so far with Reader 7 (the one for which it worked claims that he only has Reader 7 on his computernot Acrobat).

  • Filled form is blank when sent to email address

    trying to get a form to send to my email address. It working fine and i must have deleted something accidentaly.
    Here is the link to my site page
    http://www.owendawsonpga.com/contactformprocess_original_db.html
    html page
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/PGATEMPLATE3.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Golf Lessons in Baltimore Owen Dawson PGA, GOLF INSTRUCTION IN MARYLAND, GOLF LESSONS IN BALTIMORE</title>
    <meta name="Keywords" content="GOLF INSTRUCTION, GOLF LESSONS IN BALTIMORE, BALTIMORE, MARYLAND, GOLF INSTRUCTION BALTIMORE,SHORT GAME,BUNKER PLAY" />
    <meta name="Description" content="Golf Instruction in Baltimore Maryland" />
    <!-- InstanceEndEditable -->
    <link href="twoColFixRtHdr.css" rel="stylesheet" type="text/css" />
    <!--[if IE 5]>
    <style type="text/css">
    /* place css box model fixes for IE 5* in this conditional comment */
    .twoColFixRtHdr #sidebar1 { width: 220px; }
    </style>
    <![endif]--><!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    .twoColFixRtHdr #mainContent { zoom: 1; }
    /* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
    </style>
    <![endif]-->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .style1 {
        font-size: small
    .style2 {
        font-family: "Comic Sans MS", Papyrus;
        font-size: small;
    .style6 {font-size: smaller; font-family: "Comic Sans MS", Papyrus; }
    .style7 {font-family: "Comic Sans MS", Papyrus}
    .style8 {
        color: #0000FF;
        font-family: Georgia, "Times New Roman", Times, serif;
    a:link {
        text-decoration: none;
        color: #000000;
        background-color: #EBEBEB;
    a:visited {
        text-decoration: none;
        color: #000000;
    a:hover {
        text-decoration: none;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        border-top-color: #001EF1;
        border-right-color: #001EF1;
        border-bottom-color: #001EF1;
        border-left-color: #001EF1;
        color: #000000;
        background-color: #EBEBEB;
    a:active {
        text-decoration: none;
    .style9 {font-family: Georgia, "Times New Roman", Times, serif}
    .style10 {font-family: Georgia, "Times New Roman", Times, serif; font-size: small; }
    .style11 {color: #000000}
    .style12 {
        font-family: Georgia, "Times New Roman", Times, serif;
        color: #FF0000;
        font-weight: bold;
    .style13 {color: #FF0000}
    -->
    </style>
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    function submitForm(){
        var myform = document.getElementById('form1');
        var fname = document.getElementById('textfield');
        var lname = document.getElementById('textfield2');
        var phone = document.getElementById('textfield3');
        if (fname.value == ''){
            alert('First name is a required field.  Please enter your first name to continue.');
            fname.focus();
            return false;
        if (lname.value == ''){
            alert('Last name is a required field.  Please enter your last name to continue.');
            fname.focus();
            return false;
        if (phone.value == ''){
            alert('Phone number is a required field.  Please enter your preferred phone number to continue.');
            fname.focus();
            return false;
        myform.submit();
    function messageSent(){
        var status = document.getElementById('msg');
        status.innerHTML = 'Message sent successfully.';
    </script><!-- InstanceEndEditable -->
    </head>
    <body class="twoColFixRtHdr">
    <div id="container">
      <div id="header">
        <h1><img src="photos/newpgabannerfinal3_2_10.png" width="739" height="210" /></h1>
        <!-- InstanceBeginEditable name="EditRegion4" -->
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="index.html" class="style1">Home</a></li>
          <li><a href="V1Login.html" class="style1">V1 Student Videos</a></li>
          <li><a href="Private_Lessons.html" class="style1">Private Lessons</a></li>
          <li><a href="Clinics.html" class="style1">Clinics</a></li>
          <li><a href="Gift_Certificates.html" class="style1">Gift Certificates</a></li>
          <li><a href="mailto:[email protected]" class="style1">Contact Owen</a></li>
        </ul>
        <!-- InstanceEndEditable -->
        <p align="center"> </p>
      <!-- end #header --></div>
      <div id="sidebar1">
        <p class="style12"><a href="newfor2010.html" class="style13">New V1 Swing Analysis Software for 2010</a></p>
        <p class="style7"><a href="contactformprocess_original_db.html" class="style9">Instructional Form </a></p>
        <p class="style7"><span class="style9"><span class="style9"><a href="Sample_Lesson.html">Sample Lesson</a></span></span></p>
        <p class="style9"><a href="http://www.youtube.com/user/owenpga" target="_blank">Video tutorials</a></p>
        <p class="style9"><a href="http://owendawsonpga.blogspot.com" target="_blank">Instructional Blog</a></p>
        <p class="style7 style8"><a href="PGAPHOTOGALLERY/index.html" target="_blank" class="style9">Photo Gallery</a></p>
        <p class="style7 style8 style11"><a href="Instructional_Video.html">Intructional Video</a></p>
        <p class="style7 style8"> </p>
        <p class="style10">Testimonials</p>
        <p class="style6 style9">“I have been working with Owen Dawson for the past 7 years. During that time my swing has dramatically changed and improved. This has happened through Owen's drills and use of video. It is because of these techniques, that I understand how to hit good shots but just as importantly why I hit a shot poorly. I’m glad I’ve had the opportunity to work with Owen and would highly recommend him. ” <strong>Sam Young - Country Club of Maryland - 2009 Men's Club Champion </strong></p>
        <p class="style2">.............................................</p>
        <p class="style6 style9">“Owen does two things  particularly well, in my opinion.  First, he is a master of recording  technology, and it really helps me to see what I need correcting, and what the  new move needs to be.  Second, Owen knows what the best next step should be  in your own journey to a better swing.  I have taken one or two lessons  from Owen each year for the last three or four years – one relatively small  step at a time, and then worked on grooving that step.  In that period, my  index has dropped about 8 strokes, and in 2007 I won the Club’s “Most Improved  Player” award.  Kudos to Owen!”</p>
        <p class="style6 style9"><strong>Bill Smillie -CCofMD</strong></p>
        <h3 class="style2"><a href="Testimonials.html">Read other testimonials  </a></h3>
        <!-- end #sidebar1 -->
      </div>
      <!-- InstanceBeginEditable name="MAINCONTENT" --> 
      <div id="mainContent">
           <form action="contactformprocess_original_db.php" method="post" enctype="multipart/form-data" name="form1" id="form1" target="ifr">
          <p class="style5">Name</p>
          <p>
            <label for="textfield"><span class="style5">First</span></label>
            <input type="text" name="textfield" id="textfield" />
            </p>
          <p>
            <label for="textfield2"><span class="style5">Last</span></label>
            <input type="text" name="textfield2" id="textfield2" />
          </p>
          <p><span class="style5">Phone number
              <label>
              <input type="text" name="textfield3" id="textfield3" />
              </label>
          </span></p>
          <p><span class="style5">Email</span>
            <label>
            <input type="text" name="textfield4" id="textfield4" />
            </label>
          </p>
          <p><span class="style5">Address
              <label>
              <input type="text" name="textfield5" id="textfield5" />
              </label>
          </span></p>
          <p><span class="style5">State</span>
            <label>
            <input type="text" name="textfield6" id="textfield6" />
            </label>
          </p>
          <p><span class="style5">Zip Code</span>
            <label>
            <input type="text" name="textfield7" id="textfield7" />
            </label>
          </p>
          <p><span class="style5">How did you find me?</span>
            <label for="select"></label>
            <select name="select" id="select">
              <option value="internet">Internet Search</option>
              <option value="friend referral">Friend Referral</option>
              <option value="ccmdsite">Country Club of MD website</option>
              <option value="other">Other</option>
            </select>
          </p>
          <p><span class="style5">What are your golfing goals?</span>            
            <select name="select2" id="select2">
              <option value="break 100">Break 100</option>
              <option value="break 90">Break 90</option>
              <option value="break 80">Break 80</option>
              <option value="stop slice">Stop Slicing the Ball</option>
              <option value="stop hook">Stop Hooking the Ball</option>
              <option value="Compete">Compete in local tournaments</option>
              <option value="More Consistant">Hit more consistant shots</option>
            </select>
          </p>
          <p><span class="style5">How much can you practice?</span>
            <label for="select3"></label>
            <select name="select3" id="select3">
              <option value="1 hour">1 hour</option>
              <option value="2 hours">2 hours</option>
              <option value="3 hours">3 hours </option>
              <option value="> 3 hours">More than 3 hours a week</option>
            </select>
          </p>
          <p><span class="style5">What would you like to learn?</span>
            <label for="select4"></label>
            <select name="select4" id="select4">
              <option value="full swing">Full Swing Mechanics Irons</option>
              <option value="driver swing">Full Swing Mechanics Driver</option>
              <option value="short pitches">Short Pitch Shots inside of 50 yards</option>
              <option value="bunker play">Bunker Play</option>
              <option value="chipping">Chipping</option>
              <option value="short shots">Short shots from rough</option>
              <option value="putting">Putting</option>
            </select>
          </p>
          <p class="style5">What is your Handicap?<label for="select5"></label>
            <select name="select5" id="select5">
              <option value="scratch to 5">Scratch - 5 HDCP</option>
              <option value="6 to 10">6 - 10 HDCP</option>
              <option value="11 to 15">11 - 15 HDCP</option>
              <option value="15 to 20">15 - 20 HDCP</option>
              <option value="> 21">21 and Higher</option>
            </select>
          </p>
          <p class="style5">How long have you been playing?
            <label for="select6"></label>
            <select name="select6" id="select6">
              <option value="beginner">Beginner</option>
              <option value="2 to 5 years">2-5 yrs</option>
              <option value="6 to 10 years">6-10 yrs</option>
              <option value="11 to 15 years">11-15yrs</option>
              <option value="> 15 years">More than 15 years</option>
            </select>
          </p>
          <p class="style5">Have you ever had a lesson?
            <label for="select7"></label>
            <select name="select7" id="select7">
              <option value="yes">YES</option>
              <option value="no">NO</option>
            </select>
          </p>
          <p class="style5">Additional Information
            <label>
            <textarea name="textfield8" cols="40" id="textfield8"></textarea>
            </label>
          </p>
          <div>
            <div style="float:left;width:120px"><input type="button" name="button" id="button" value="Submit" onclick="submitForm()" /></div>
            <div id="msg" style="font:bold 12px arial;float:left;margin-left:10px;width:200px"></div>    
          </div>
        </form>
        <p align="center" class="style8"><br />
        </p>
        <p class="style8"> </p>
        <p class="style8"> </p>
        <p class="style8 style12"><strong><br />
         </strong></p>
        <p align="left"> </p>
        <h1> </h1>
        <!-- end #mainContent -->
      </div>
      <!-- InstanceEndEditable -->
      <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
      <br class="clearfloat" />
      <div id="footer">
        <p align="center"><a href="http://www.v1golf.com" target="_blank"><img src="photos/GAW.png" width="163" height="60" hspace="20" border="0" /><img src="photos/logo.png" width="80" height="76" hspace="40" border="0" /></a><a href="http://www.owendawsonphotography.com" target="_blank"><img src="photos/ody.png" width="199" height="59" border="0" /></a></p>
        <h2 align="center" class="style6">©Owen Dawson P.G.A. ™ All rights reserved</h2>
        <!-- end #footer -->
      </div>
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    <iframe id="ifr" name="ifr" style="display:none"></iframe>
    </body>
    <!-- InstanceEnd --></html>
    php page
    <?
    $fname = $HTTP_POST_VARS['textfield'];
    $lname = $HTTP_POST_VARS['textfield2'];
    $phone = $HTTP_POST_VARS['textfield3'];
    $email = $HTTP_POST_VARS['textfield4'];
    $address = $HTTP_POST_VARS['textfield5'];
    $state = $HTTP_POST_VARS['textfield6'];
    $zip = $HTTP_POST_VARS['textfield7'];
    $find = $HTTP_POST_VARS['select'];
    $goals = $HTTP_POST_VARS['select2'];
    $practice = $HTTP_POST_VARS['select3'];
    $learn = $HTTP_POST_VARS['select4'];
    $handicap = $HTTP_POST_VARS['select5'];
    $timeplaying = $HTTP_POST_VARS['select6'];
    $lesson = $HTTP_POST_VARS['select7'];
    $additional = $HTTP_POST_VARS['textfield8'];
    mail('[email protected]','Owen Dawson PGA Contact Form Submission',"First Name: $fname\nLast Name: $lname\nPhone Number: $phone\nEmail: $email\nAddress: $address\nState: $state\nZip Code: $zip\nHow did you find me? $find\nWhat are your goals? $goals\nHow much can you practice? $practice\nWhat would you like to learn? $learn\nWhat is your handicap? $handicap\nHow long have you been playing golf? $timeplaying\nHave you ever taken a lesson? $lesson\nAdditional Information: $additional\n",'From: [email protected]');
    ?>
    <html>
    <head>
        <title>Contact Us Submission Page</title>
        <script type="text/javascript">
        window.onload= function(){
            parent.messageSent();
        </script>
    </head>
    <body>
    </body>
    </html>

    The only thing that really jumps out at me with your script is $HTTP_POST_VARS.  That is a deprecated function as of PHP 4. something I don't remember the exact number.  It is possible if your host upgraded the PHP installation that the function is now replaced by the simpler $_POST global variable ( http://php.net/manual/en/reserved.variables.php ).
    Also the easiest way to test this type of thing is to print your email text to the screen and stop the PHP script there before the mail can execute.  Then you can check out what variables exist and what don't before finishing your script.  Also I hope you have left stuff out for security reasons, because right now you appear to have no way to validate that a form was submitted in the first place.

  • Why does the data disappear from my form fields when my form is sent over to client ?

    Hi all,
    I don't know if this is just happening a few times or ALL the time unfortunately:( I normally send over estimates (as regular pdfs) with some filled out Acrobat forms that make up part of the estimate (these include terms of agreement, project details, etc.). Now, before I send out the pdfs I password protect the entire pdf so that nothing can be changed, but that the pdf can be printed at high quality.
    Well, what is happening when my client opens up the pdf (usually on a Windows machine) is that NOTHING APPEARS in all of the form fields where I had input and saved the data! Yet when I open up the form on my Mac in Acrobat, or Reader or Preview, all looks just fine. Any idea why this is happening and what I could do to prevent it from happening in the future? I am using Acrobat X.
    Thank you kindly,
    Christine

    Hi Gilad,
    I never use Preview and did not use Preview at all before sending the document over to my most recent client either.
    I only opened Preview up this morning after I discovered that all of the form data had disappeared on his end! And the only reason I opened up Preview was because I already knew it looked fine in Acrobat so wanted so wanted to view the form in a different application.
    My client would not even have notified me about it had he not sent the signed form back to me and I saw there was no data there! I then called him and asked him about the missing data and he said that he thought I had simply sent over the form purposely with blank fields:(
    I have just emailed him to ask him what application he opened it up in. My understanding is that he is on Windows because ne mentioned to me his company was using Windows when we last spoke. Perhaps he has a personal Macbook where he opened it? I just don't know and can hopefully soon find out:)
    But THANK YOU for letting me know about that script! I appreciate it:) I have now downloaded and installed it and will just have to use it on ALL of my forms before sending them out:)

  • Actionable Task form with data as an email in Human task implementation.

    Hi All,
    In one scenario in my project, I need to design an actionable task form with data as an email, and this email can be sent to specific users to actions ( like updating, approval, rejection etc). The users should be able to edit the data in email only ( not needed to login in BPM work-list). Please let me know if it is possible to design such task forms and how to push and receive data in email from user.
    Thanks,
    rps

    Hi, Check this below links,
    Send external email from within ABAP program.
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    Sending mail with attachment.
    http://www.sap-img.com/abap/sending-email-with-attachment.htm
    Regards,
    Joan

  • Methods of opening emailed form data

    Hi, I would like to know if there is any way to streamline opening data submitted using the submit email function in LiveCycle Designer 7. Is there anyway to have the data open in the form automatically when the email is received from the customer? It seems quite tedious to rename and save the data file, then go find the appropriate pdf, open it, and then go and import the data. Any ideas???
    Nathan

    > Is there anyway to have the data open in the form automatically when the email is received from the customer?
    No absolutely not. Mail programs have locked out this kind of thing
    very strongly - it would be like saying "how can I have this program
    run automatically when I attach it and send it to a customer".
    > It seems quite tedious to rename and save the data file, then go find the appropriate pdf, open it, and then go and import the data.
    That sounds a bit tedious, though perhaps necessary if there is to be
    any kind of system to storing the files you receive (this is why web
    solutions are so much more preferable).
    But in general you don't have to open the PDF then import the data IF
    the PDF was originally on a web site. Opening the form data will be
    enough, as it will contain the URL of the original data file. This
    won't work, however, if you sent the user a local copy to fill, as it
    will contain the filename THEY used.
    Aandi Inston

  • Form message pops up "Sending Data files by Email" when it shouldn't

    I have a simple PDF with a form which I've created with the form tools in Acrobat Pro 8 for sending a FDF file by email.
    It works OK but when clicking on some of the other internal page links in the document (set up in InDesign) that are entirely unrelated to the form I get the following pop up box:
    Sending Data files by Email
    Please note this form contains an email submit button. Clicking this button will email a data file containing data you type into the form. However, the form itself will not be sent. Remember you cannot save a completed copy of this form with Adobe Acrobat Reader 9.
    1. How do I stop this popping up. Especially on pages that are unrelated to the form.
    2. Why does it say: "Remember you cannot save a completed copy of this form with Adobe Acrobat Reader 9. " when it does seem to work OK. I can send the FDF file to an email address. But this pop up box just isn't right.
    And I have another query which isn't really on topic.
    3. How do you get radio buttons to be mutually exclusive (eg: sex: male/female) - it says in the Radio Button Properties button Options tab to get them to have the same field name. But where do you set the field name?
    I posted this in the Mac section as I think the Mac version of Acrobat Pro may be the route cause!

    1. How do I stop this popping up. Especially on pages that are unrelated to the form.
    I do not know you can. It is a user setting, not a pdf file setting.
    2. Why does it say: "Remember you cannot save a completed copy of this form with Adobe Acrobat Reader 9. " when it does seem to work OK. I can send the FDF file to an email address. But this pop up box just isn't right.
    It is correct. The user cannot save the file which is a pdf file. It is not sending you a pdf file, but as you noted a fdf file.
    3. How do you get radio buttons to be mutually exclusive (eg: sex: male/female) - it says in the Radio Button Properties button Options tab to get them to have the same field name. But where do you set the field name?
    If you double-click on any field with the field tool activated, you will get the field properties box. You can set the field name and default value here. You want the field name to be the same, but the default value to be different.

  • Read / delivery receipt for PO forms sent by email

    Hi Experts,
    I have one requirement to implement the delivery receipt for all the PO forms sent by email.
    I have a question that I need your support:
    - As we have different companies codes operating and not all would like to receive the delivery receipt, can I restrict the notifications, for example, by company code or by purchasing organization?
    Kind regards,
    Francisco

    Hi,
    It has to be with Co. Code but via Plant. You will have to maintain entries of plant (and preferably Co. Code) in a 'Z' table and write an enhancement to check entries in the table before sending. Those available shall be sent.
    Hope this helps!
    Reetesh

  • Some users are experiencing difficulty opening certain docx files sent as email attachments. These files contain content controls to protect data in the document. Could someone please confirm that the content controls are the reason the files won't open.

    Some users are experiencing difficulty opening certain docx files sent as email attachments. These files contain content controls to protect data in the document. Could someone please confirm that the content controls are the reason the files won't open.
    These files open correctly when sent as doc files.
    Thanks

    Congrats to Saeid, Ronen, and Ricardo! Big thank you to all our contributors!
     Transact-SQL Technical Guru - February 2015  
    Saeid Hasani
    T-SQL: How the Order of Elements in the ORDER BY Clause Implemented in the Output Result
    Durval Ramos: "Very well structured and with examples that clarify how a T-SQL statement can change the data output order."
    Richard Mueller: "Good use of Wiki guidelines and great examples."
    Ronen Ariely
    Free E-Books about SQL and Transact-SQL languages
    Richard Mueller: "An excellent collection and a great idea."
    Durval Ramos: "A good initiative. Very useful !!!"
    Ricardo Lacerda
    Declare Cursor (Transact-SQL) versus Window with Over - Running Totals
    - Accumulated Earnings
    Durval Ramos: "The "Window function" sample was well presented, but it was unclear how the chart was generated."
    Richard Mueller: "A new idea that can be very useful. Grammar needs work"
    Also worth a mention were the other entries this month:
    [T-SQL] Retrieve Table List with Number of Rows by
    Emiliano Musso
    Richard Mueller: "Short but sweet solution to basic question."
    Durval Ramos: "A simple T-SQL script, but useful."
    [T-SQL] Search for Missing Values within a Numerical Sequence by
    Emiliano Musso
    Richard Mueller: "Clever solution with good code examples."
    Durval Ramos: "You need add more details about development of the idea and create a "Conclusion" section to easy understanding."
    [T-SQL] Converting Multiple Rows into HTML Format single ROW by
    Maheen Khizar (Bint-e-Adam)
    Durval Ramos: "In some situations, It's need to consume and format HTML tags for a UI, but It's important to remember that Best Practices recommend this formatting process preferably in Presentation Layer"
    Richard Mueller: "A great new idea. Some features need more explanation. Avoid first person."
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • EMail Submit button with mailto: based on form data

    Based on form data, I would like to have an email button that sends mail to the email address identified in the email field. Obviously this can change, how would one go about programming a button to send to email based on field data?
    Thx...
    /cw

    Hi Chris,
    Yes this can be easily done. I gathered the following solutions from various threads and so I am not claiming any originality here...
    Set up a textfield "Email", with a tooltip telling users to separate email addresses with a ";".
    Next set up a regular button with the following Javascript in the click event:
    var email = xfa.resolveNode("form1.#subform.Email").rawValue;
    var subject = "Specify your subject line here"
    event.target.submitForm({cURL:"mailto: "+ email +"?subject=" + subject +"&body=You can also input some standard text to appear in the body of the email.",cSubmitAs:"PDF",cCharset:"utf-8"});
    You might want to put an if statement that if the "Email" textfield is blank/null that an app.alert comes up informing the user to input at least one email address.
    We took it a stage further on one of our forms. We set up three checkboxes with people's names who are regularly sent the form (nod and cc1 and cc2) and then a textfield "additional" for additional addresses.
    Each checkbox had an associated Textfield (EM1_email, cc1_email, and cc2_email) that were invisible. Each checkbox had similar Javascript in the mouse up event:
    if (this.rawValue == 0) {
    EM1_email.rawValue = null;
    else {
    EM1_email.rawValue = "[email protected];";
    Then we set up another invisible textfield (Email) which had the following Formcalc in the calculate event:
    if (nod.rawValue == 0 & cc1.rawValue == 0 & cc2.rawValue == 0) then
    $ = null
    else
    $ = Concat(EM1_email, cc1_email, cc2_email, additional)
    endif
    This basically pulled the email addresses from the ticked checkboxes and the additional user inputted email addresses into one text field. From there the regular button with the script above send the email. This speeded up the process for regular reciptents.
    If you search the forum for topics such as cURL:"mailto: you should see lots of other examples.
    Good luck,
    Niall

Maybe you are looking for

  • How can I do to make the Sun Fire V100 quieter?

    It is rated at 60 decibels when idling! And I would like to have it in my lounge, what is the first suggestions for making it quieter? Has anybody done this before? [http://sunsolve.sun.com/handbook_pub/validateUser.do?target=Systems/SunFireV100/spec

  • Need Download Url - Proofing Tools for Office 2003 SP2 Greek

    Hi,    I need to install Greek Proofing Tools for Office 2003 SP2 on XP machine ,couldn't find download location. Please let me know where i can download it.

  • Deleted it by mistake

    I have had trouble with safari since Saturday but I just deleted it by mistake and the trash is emputy what can i do to get it back on my ibook..help me please at school need to use the internet.

  • Phase/nano3G authorisation problem!

    Can anyone help? I just purchased and downloaded Phase for my 3G nano but keep getting "not authroised" message when synching. Have confirmed I have latest versions of itunes 7.5 (19) and ipod s/w 1.0.2. Created Phase playlist in itunes then tried to

  • Will n8 be updated to windows

    N8 is currently using belle.It must be updated to windows so that it could compete with android,ios. Solved! Go to Solution.