Creating a form to email

HI guys! I thought I would try to take another look at this again. I don't know PHP and am learning it but on my website, I created a great contact form but am now in the process of having it authenticated. I am having issues with that. The code that I used to just call the information seems to work fine. When a user clicks the submit, it takes them to the thank you page, but I get no email from it because I need to have the authentication. 
I contacted my server and I just became more confused if anything. They gave me a link to verify everything but I don't know how to integrate that into my code. I am hoping somebody here could help me with this. I will post my code that I am using. I did mask out personal information. My password, my email, my website. I put in fake ones but they are correct.
This first part is from their website. If I add this in with the required information it calls for, I end up getting an email that says test email via php from sender. I get no email from my actual form.
<html>
<head><title>Test email via php</title></head>
<body>
<?
require_once "Mail.php";
$from = "Sender <[email protected]>";
$to = "Recipient <[email protected]>";
$subject = "This is a test email sent via php";
$body = "This is a test email";
$host = "mail.domain.com";
$username = "[email protected]";
$password = "password";
$headers = array ('From' => $from,
  'To' => $to,
  'Subject' => $subject);
$smtp = Mail::factory('smtp',
  array ('host' => $host,
  'auth' => true,
  'username' => $username,
  'password' => $password));
$mail = $smtp->send($to, $headers, $body);
?>
</body>
</html>
This next part is my actual code that I used. If I use this, I either get a mail function error or it goes to the thank you page, but I get no email from it.
<?php
// This function checks for email injection. Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
function isInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
  return true;
else {
  return false;
// Load form field data into variables.
$first_name= $_REQUEST['first_name'] ;
$last_name = $_REQUEST['last_name'] ;
$email = $_REQUEST['email'] ;
$comments = $_REQUEST['comments'] ;
// If the user tries to access this script directly, redirect them to feedback form,
if (!isset($_REQUEST['email'])) {
header( "Location: contact.html" );
// If the form fields are empty, redirect to the error page.
elseif (empty($email) || empty($comments)) {
header( "Location: error_message.html" );
// If email injection is detected, redirect to the error page.
elseif ( isInjected($email) ) {
header( "Location: error_message.html" );
// If we passed all previous tests, send the email!
else {
mail( "[email protected]", "Email from website",
  $comments, "From: $email" );
header( "Location: thank_you.html" );
?>

Can we first establish if your SERVER really DOES requie the authentication or not.
Copy the below and paste it into a new DW document and save it as - form_submit.php
Change [email protected] in the code below to the recipient email address. Upload to your server fill out the fields and see if any results are sent. If not then authentication is required, if yes it's not required and you are free to use a simpler solution.
<?php
if (isset($_POST['submit'])) {
    // get name
$name = trim($_POST['name']);
// get email address
$email = trim($_POST['email']);
// get comments
$comments = stripslashes(trim($_POST['comments']));
// check antiSpam field
$antiSpam = trim($_POST['antiSpam']);
if (!empty($antiSpam)) {
    exit;
$to = "[email protected]";
$subject   = "Comments from website";
$headers  = "From: $email\r\n";
$headers .= "Reply-To: $email\r\n";
$message = "Name: $name\n\n";
$message .= "Email Address: $email\n\n";
$message .= "Comments: $comments\n\n";
mail($to, $subject, $message, $headers);
$sent = "Mail was sent successfully";
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Website Form</title>
<script>
$(document).ready(function() {
$('#submit').click(function()
    var name = $('#name').val();
if (name == null || name == "" ) {
    alert('Please provide your name');
    return false;
// check for valid email address
var email = document.getElementById('email');
var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (!filter.test(email.value)) {
alert('Please provide a valid email address');
email.focus;
return false;
    var comments = $('#comments').val();
if (comments == null || comments == "" ) {
    alert('Please provide your comments');
    return false;
</script>
<style>
#antiSpam {
    display: none;
</style>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
</head>
<body>
<?php
if(isset($sent)) {
    echo "<h3>$sent</h3>";
echo "    <script>
alert('Your message has been sent!');
</script>";
    ?>
<form id="maiForm" method="post" action="form_submit.php">
<p>
<label for="name">Name</label><br>
<input type="text" id="name" name="name">
</p>
<p>
<label for="email">Email Address</label><br>
<input type="text" id="email" name="email">
</p>
<p>
<label for="comments">Comments</label><br>
<textarea id="comments" name="comments"></textarea>
</p>
<input type="text" id="antiSpam" name="antiSpam">
<input type="submit" name="submit" id="submit" value="submit">
</form>
</body>
</html>

Similar Messages

  • How to create a form for email?

    Hi all,
    I use 1 and 1 for hosting however they do not have a form script available with
    the package I have.
    What is the best way to put a simple form on my site? One that would be for
    entering an email for a free report/newsletter is what I am shooting for?
    I was told there are a couple free wysiwyg ones, however I tried them and when
    you copy the code and use it in DW it does not come out looking very well, or
    at least I couldn't get it to work. So I would like to do it the right way and of
    course the lowest cost way of doing it.
    Any help is greatly appreciated...regards, ..dano

    Hello,
    Yes I have no doubt the code is messed up
    I guess I should start from the beginning. Here is the original code below for the form code that I recieved from
    my hosting Company to use.
    However all I need is the email field and a submit button and not the other fields. That is probably how
    I managed to mess up the code, I was trying to take out the other fields, line it up etc and most likely did a pretty
    good hack job.
    I tried this original code and yes your right it really did mess up the side bar terribly.
    Here is the original code my hosting Co gave me before I made a mess out of it.
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Contact Us</title>
    <link rel="stylesheet" type="text/css" href="../../css/nms.css" />
    </head>
    <body>
    <form method="post" action="mail.php">
      <table>
       <tr>
        <td>What is your name ?</td>
        <td><input type="text" name="name" /></td>
       </tr>
       <tr>
        <td>What is your e-mail address ?</td>
        <td><input type="text" name="email" /></td>
       </tr>
        <tr>
        <td> Comments:</td>
        <td><textarea name="data" cols=40 rows=6></textarea></td>
        </tr>
       <tr>
        <td colspan="2"><input type="submit" /></td>
       </tr>
      </table>
    </form>
    </body>
    </html>
    Here is my site and where I wanted to put this was on the very top
    of the right side-bar, just above the words Customer Testimonial.  here
    is my site wwwdotselfdefenseproshopdotcom
    Thanks for any help...
    Regards,

  • Pre filling form then emailing for further completion

    I am new to this, so please bear with me. I am creating a form to email to our consituents that has information that may or may not be correct.
    I want to fill the form with the info/data we have and then have the recipient either add or change the information depending on if it is correct and email it back to me. There are approx 300 constituents I need to send these forms to. The form will have text boxes, yes/no boxes, etc.
    I am using Adobe Acrobat Pro 8. The data lives in an excel spreadsheet.
    I know I will have more questions, but initally how do I get the data into the form?
    Thank you for any help you give me or direction you can point me.

    If this is going to be a yearly correction of information in your database, then during the second year you would be violating the Adobe license which says you may not use an Reader enabled pdf form (enabled in Acrobat as opposed to LiveCycle Reader Extension enabled) to 500 uses. Personally, I think you would be better off creating a webform from the information in the excel file and directing the users to the website. This will have two advantages---the information you are working with will be transferred to a database where it belongs and the corrections will be in a database for your future use.  I know of no way to do what you what with an Acrobat based form. However, it may be possible using LiveCycle Designer. You might ask the the Designer forum.

  • I created a form, I want the email notices to go to several people. Why is this so difficult? It seems like they have to be a co-author/reader or something? I don't get it

    I created a form, I want the email notices to go to several people. Why is this so difficult? It seems like they have to be a co-author/reader or something? I don't get it

    This is crazy! I paid for this service to make it easier to create forms for a company that has had several acquisitions all over the globe. This was supposed to make it easy to create forms hosted on adobe so no matter what happens on all their servers, we would be safe using this forms service until we can integrate all acquisitions and build a permanent web site on a single server. Now I find out that even this is a major issue sending emails to team members, many I have never met so making them a collaborator or even setting up forwarded emails is not something I wanted to do. This service was advertised as simple and easily send notifications to many people. I am now frustrated and thinking this was a waste of money! Why is it like that?

  • I have created a form in InDesign, exported to a pdf, created an editable form and saved.  When I open the form and make changes and save, the reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is alway

    I have created a form in InDesign, exported to a pdf, then created an editable form and saved.  When I open the form and make changes and save, then reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is always minus the edits.   ????

    Hi chuck,
    If you ave created the form and then filling it yourself and saving the form, the filled data should be there when you reopen the same form.
    Can you please send the form to me at [email protected]  so that I can have a look.
    Regards,
    Rave

  • Creating fillable forms with Live Cycle that can be emailed, saved, printed, etc. by anyone!

    So I started using livecycle because the forms one can make are astounding, its a great program except for sending the forms out to be filled in especially to those only with reader. I've looked over a lot of past discussions and the answers seemed too complicated. Here is a workaround for not so computer savy folks like myself.
    First, create your form, use everything the software has to offer to make your form exactly like you want and yes you can use the "submit by email button" that's what it's for.
    Second, once the form is complete one seemingly complicated step to fix the "attach as pdf instead of xml" if your form keeps attaching as "xml" if it already attaches as "pdf" then skip the rest of the "second step"
         go to the top and click the "view" menu, then select "xml source"
         then go back to top and click the "edit" menu then select "find"
         type "xml" without the quotations and keep clicking "find next" until you see the "submit" line (eg. <submit format="xml")
         change the "xml" to "pdf"then go back to the "design view column" if you get a "parts of this or that cannot be whatever" message just click ok or ignore
    Third, assumming you used the "submit by email" button like you should be the find that button and click the center somewhere, too the right a "field" box comes up
         enter your own email address, you can enter an stock email subject to or leave it blank
         also, a bit further down it says "presence" then "visible" I like to change "visible" to "visible (screen only)" this way it does not show on the printed version. That is one of the things i like the most about this program, you can put text boxes, signature boxes, any kind of
              box and make it visible, visible only on print, only on screen, etc. you just have to play around. It's nice to put a large text box with instructions for how the person should fill out and what to do that helps them and doesn't show up on print.
    Ok, the above is a lot of words but if you print it out and follow step by step you'll see how easy it is and after a couple runs you won't have to look at your cheat sheet again.
    Fourth, So, it was easy to figure out how to make a form the frustrating part was sending it out to be filled in save, printed whatever then sent back to me (now you). the problem is, the form has to be distributed to be approved so to speak. If it is just for one person that is no big
         deal, just first click "file" "save as" give it a name it reverts into adobe pro and asks how you would like to distribute, follow the instructions you send it to whomever you like they fill it out and submit it back because your email address is linked to the "submit as
         email" button. But what if its just a form you want on the company share drive anyone can open fill out, save, send to you or send to someone else, that's where it's tricky.
    Fifth, Distributing to yourself so you can approve the form for world wide dissemination.
         Same procedure as above for the single recipient but instead of sending to someone else you send it back to yourself by entering your own email address again when it asks "how would you like to distribute your form--same as above"
         click "send now via email" enter your address they will return it to (but it's not they this time its really yourself)...follow the instructions, specifiy a generic folder that will collect data (you can delete later, you don't have to collect data unless you want)
         put in your email address as the recipient. change the stock email subject and message if you'd like, then click done, it will email you the form. close out the live cycle and adobe programs and go to your inbox (may take a min)
    Sixth, open your attachment.(no remember you submitted the form to yourself but think of yourself as someone else like a customer) when the form is open you can enter stock fields if you like or do nothing...click the submit by email button, follow the instructions and s
         send it back to yourself again (don't get confused...it's really you as the customer sending back to yourself as the owner of the form) if you are a criminal think of it as like "laundering money through a bank" you are laundering the form through your own email system
         close out the form and go to your inbox again an open the returned form. now when you open it there is something new. there is a box that says "this file is a completed form (even though you didn't enter any data---it's a laundered form now) and leave it on the
         "add to existing data set" which is the one you created earlier in the generic folder....click "ok", now the form changes once again, there is a new look to the top, don't worry about it just go to the top right of the form and click on "options" then "save file as" give it
         a name again and remember where you saved it to. then close adobe and say yes when it asks you if "you want to save changes to your data set"....say yes!!
    7th, forget the data set, no longer is important...find the form you saved and open it. go to the top and click the "advanced" button then "enable user rights in adobe reader" then click "save now" this is the final form so name it appropriately and place it where you want
         people to find it, they can now open, fill out, print, save as, email, whatever. The only downside is if they use the submit by email it automatically defaults to your email but when their email client opens they can delete your address and put someone else if they want.
    thats it...lots of words but it really is easy after you do it a couple of time. the final downside, if the final form works but you decide to change anything on it with LiveCycle, you have to go back through all the steps or it will tell whoever opens it in reader that the original
         has change and they cannot do anything with it, but it's ok, make your changes or improvement, by now you are an expert at laundering live cycle forms, take you 5 min, no worries!
    Happy Laundering!!
    Sean
    NOTE: this procedure only validated with LiveCycle 8.0

    Here is the window you will see when you choose Enable Usage rights.
    Note: That means that you can not edit any content once USAGE Rights are envoked.
    So you must make sure all corrections to documents made and perfect before Envoking rights.

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  t worked, but only for those with PC.  I could not get it to work with Apple Yosemite even with reader installed .  is there a way i can make it work for apple /

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email. It worked, but only for those with PC. However,  I could not get it to work with Apple loaded with Yosemite even with reader installed .  Is there a way i can make it work for apple / Mac? It worked fine on a mac using Mountain Lion and reader
    Thanks

    LiveCycle = XFA forms.
    afaik - These cannot be used in Apple OSs.
    Be well...

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for thos

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for those with adobe pro.  i could not get it to work with reader.  is there a way i can make it work for reader?

    Noted.
    The LiveCycle user to user forum is across town at:
    Adobe LiveCycle 
    Be well...

  • Create a PDF Form and Email the entire form w/ responses

    I created a form in PDF and I want to e-mail the form with the responses in the fields... like a file-->send to-->mail reciepents as attachment...
    I want to e-mail the form with responses not just email the data file of the form...any suggestions..please

    I've seen a number of people report this type of behavior and have experienced it myself with Acrobat.com, but have never heard what's causing it or know of a fix. You might try the Acrobat.com forum here to see if they have any ideas.
    What's worse is when it appears as though the form submits successfully to Acrobat.com, but the data never gets added to the responses.

  • Sending PDF forms (created using SFP) as Email Attachment

    Hi,
         I have created bunch of ADOBE forms using SFP. They are not interactive forms. created using ADOBE Live cycle designer.
    I have the Function module and by executing I can view the PDF form in print preview mode. But I have to save this in backend and attach to email.
    I have a program that have to send one of the forms created in SFP as email attachment to outside SAP.
    Please advice how to achieve this.
    Thanks,
    Sanjeev

    Hi ,
    Please find below a code sample for your requirement
    *& Report  ZENVOI_PDF_MAIL
    REPORT  zenvoi_pdf_mail MESSAGE-ID ad.
    TYPE-POOLS : abap .
    DATA : data_for_update TYPE zdemopdf ,
           hexa            TYPE solix_tab.
    DATA : fm_name   TYPE funcname ,
           param     TYPE sfpoutputparams,
           doc_param TYPE sfpdocparams ,
           output    TYPE fpformoutput .
    param-nodialog = abap_true. " suppress printer dialog popup
    param-getpdf = abap_true.
    doc_param-langu = sy-langu.
    doc_param-country = 'FR'.
    doc_param-fillable = abap_true.
    doc_param-dynamic = abap_true.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        i_name     = 'ZDEMO_PDF'
      IMPORTING
        e_funcname = fm_name.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = param
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4.
    CHECK sy-subrc EQ 0.
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams  = doc_param
        data_for_update    = data_for_update
      IMPORTING
        /1bcdwb/formoutput = output
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3.
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer     = output-pdf "PDF file from function module
      TABLES
        binary_tab = hexa.
    * Envoi du mail
    ** CLASS-DEFINITIONS
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: document           TYPE REF TO cl_document_bcs.
    *DATA: sender             TYPE REF TO cl_sapuser_bcs.
    data: sender            TYPE REF TO if_sender_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    ** INTERNAL TABLES
    DATA: l_mailtext TYPE soli_tab.
    DATA: iaddsmtp   TYPE TABLE OF bapiadsmtp.
    DATA: ireturn    TYPE TABLE OF bapiret2.
    ** VARIABLES
    DATA: mail_line  LIKE LINE OF l_mailtext.
    DATA: bapiadsmtp         TYPE bapiadsmtp.
    DATA: subject    TYPE so_obj_des.
    DATA : att_subject TYPE so_obj_des.
    DATA : w_except TYPE REF TO cx_root .
    CONSTANTS : c_defmail TYPE ad_smtpadr VALUE
                     '[email protected]' .
    FIELD-SYMBOLS : <smtp> TYPE bapiadsmtp.
    *Set subject of the mail
    subject = 'Exemple de PDF interactif'.
    * Set text of the mail
    mail_line = 'Merci de remplir le formulaire et nous le retourner'.
    APPEND mail_line TO l_mailtext .
    att_subject = 'Template du PDF'.
    TRY.
    * Create persistent send request
        send_request = cl_bcs=>create_persistent( ).
    * Get sender object
        sender = cl_sapuser_bcs=>create( sy-uname ).
    *    sender =
    *      cl_cam_address_bcs=>create_internet_address( '[email protected]' ) .
    * Add sender
        CALL METHOD send_request->set_sender
          EXPORTING
            i_sender = sender.
    * Read the E-Mail address for the user
    *    CALL FUNCTION 'BAPI_USER_GET_DETAIL'
    *      EXPORTING
    *        username = sy-uname
    *      TABLES
    *        return   = ireturn
    *        addsmtp  = iaddsmtp.
    *    LOOP AT iaddsmtp ASSIGNING <smtp> WHERE std_no = 'X'.
    *      CLEAR bapiadsmtp.
    *      MOVE <smtp> TO bapiadsmtp.
    *    ENDLOOP.
    *    CASE bapiadsmtp-e_mail.
    *      WHEN space.
            recipient =
         cl_cam_address_bcs=>create_internet_address( c_defmail ).
    *      WHEN OTHERS.
    *        recipient =
    *     cl_cam_address_bcs=>create_internet_address( bapiadsmtp-e_mail ).
    *    ENDCASE.
    * Add recipient with its respective attributes to send request
        CALL METHOD send_request->add_recipient
          EXPORTING
            i_recipient  = recipient
            i_express    = 'X'
            i_copy       = space
            i_blind_copy = space
            i_no_forward = space.
    * Set that you don't need a Return Status E-mail
        CALL METHOD send_request->set_status_attributes
          EXPORTING
            i_requested_status = 'E'
            i_status_mail      = 'E'.
    * set send immediately flag
        send_request->set_send_immediately( 'X' ).
    *Build Document
        document = cl_document_bcs=>create_document(
                            i_type    = 'RAW'
                            i_text    = l_mailtext
                            i_subject = subject ).
    *     add attachment to document
        CALL METHOD document->add_attachment
          EXPORTING
            i_attachment_type    = 'PDF'
            i_attachment_subject = att_subject
            i_att_content_hex    = hexa.
    * Add document to send request
        CALL METHOD send_request->set_document( document ).
    * Send document
        CALL METHOD send_request->send( ).
        COMMIT WORK.
      CATCH cx_send_req_bcs INTO w_except.
      CATCH cx_address_bcs INTO w_except.
      CATCH cx_document_bcs INTO w_except.
    ENDTRY.
    Hope this help you .
    Best regards

  • Best way to create a form that can be emailed and also secured down.

    Hi,
    I work in a manufacturing company that tests each raw material as it comes in the door. The results from the tests are currently handwritten on a template form that is printed first. The sheets are then sent to another department who types up the results and saves them individually as a Word document. There is a HUGE paper trail and increased margin for error. Not to mention the sheer time!
    I am trying to streamline the process is a little by creating a PDF form in which the results can be entered and the form emailed to the other department. I know how to create the form and add a "submit" button which opens up the Outlook client. However, I want to make sure the form cannot be saved by the lab personnel, instead I want to give them the abilty to enter the data and email.Thisis an interim solution until a proper lab management system can be put into place.
    What is the best practice around something like this? Any other suggestions or tips will be appreciated.
    Thank you.

    Can I somehow collect the data in another software such as Excel?
    I would still need the PDF form completed and emailed over but if I can collect the data externally, that would be nice.

  • Create a form without the option to submit or send via email

    Just oant to know is it posible to create a form without the option to submit or send via email. I want my students to fill in the form and save it to a personal folder. The submit form button creates confusion.

    Many thanks Randy, I'll give it a go. But it means setting up the how to pay question at the top of the form. Currently we have it setup at the bottom.
    Think I can do a "Will you be paying by credit card?" check box at the top - Tick equal show Fields A (which I have already mapped to the payment option) and Unchecked Show Fields B.
    Sound logical..will be cumbersome though as there are 12 mult show/hide fileds in there already  here's the link just for the original form for future reference for anyone in the forum wanting to see what the form looks like and is facing the same problem.
    Will make the changes in a quiet perios and anyone interested can take a look next week and see how I got on.
    Appreciate your response Randy
    Roger

  • I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an

    I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an internal project we're colletively working on.  Now I see that FormsCentral is going away and I can't get my doc to save as a PDF without an upgrade?  Help

    You should be able to log into the online Formscentral Acrobat XI air app and see your doc there. From there you would need to save it out as a PDF without a submit button to have it continue to work past July. If you don't see your online form(s) please let me know the adobeID you use to log into the service as well as the form name that is missing and I will look into it for you.
    Andrew

  • Can you create a form to send each user in an organisation an email?

    I was wondeing if anyone knows if its possible to create a form, which can be invoked at an administrators discretion to loop through each user in an organisation and if they have an email address to send them an email notifying them they have an IDM account setup.

    Through search query you can get all users from specific organization. And after you can run getView on each user in order to extract email. All this can be done by rule.

  • I have created a form saved it then attached it to an email and sent it out. The form arrived and can be opened but how is it returned to me once it is filled in. What steps should the person getting the form follow?

    I need help in learning the steps to follow after the fillable form has been filled in and I want to return it to the sender. It arrived as an attachment to an email.

    There are various was to return a filled-in PDF form but many require some detailed information about what product the person filling in the form will be using.
    As noted above the form can be filled out and faxed or snail mailed to you.
    Since Acrobat 3 the form could be submitted to a scripted web page and have the web server perform the tasks necessary to return the data to you.
    Since Acrobat 6 the creator could add special "Extended Form Rights" to the form so users with Reader version 5 or better could save the form and email the form.
    For mobile devices the app the user will be using will determine how or if the form can be returned.
    Do not allow users to use Apple's Preview application on the Macintosh. It will corrupt the form in many ways.

Maybe you are looking for

  • Kingston HyperX ram short lived!!

    That was short lived! I stuck my 2 old pieces of ram in with my new and it would not boot and no signal to the monitor. I had to take the new ones out and clear cmos and then stick my old ones back in to get it to boot. By brand new ram is now toast

  • Changing organizational structure in SRM

    Hi All, We are in production with SRM 4.0 since 1.1.2006 and using R/3 since 2003. Our company intends to change the organizational structure (delete, merge, move organizational structure). We are going to copy our PROD systems (both R/3 and SRM) to

  • Buckets dynamic- series

    Hello all, I am using Oracle 11g release 2. I want to generate he buckets dynamically in chart. For instance, sales figure is between 1 to 30. I want the number of buckets to be always be 5. If I need to be between 10-30 out of 1-30, I want evenly di

  • Bank Key, user definable?

    Hi Expert, I would like to ask whether SAP bank key is user-definable, or need to follow certain standard, naming convention specified by each bank/country? This is becuase I found that I need this bank key for my electronic bank statement settings .

  • Missing component into the application

    i missing the conponent into the application but i have the package into the schema. what4s the workarrounf for recover this component??