Emailing form

Hi,  I would like to submit a PDF form created with Live cycle designer ES2,
I have set up the email creation & this is working well.  One issue is I would like to be able to rename the attachment (the form) to a value for the form itself, at the moment the form is attaching a copy of the default form.
I do not want to have to save the form as copy  “save As” as this reduces the point of the email submission.
Does anyone know a way to do this, it would be a great help.
Thanks   

FYI: Renaming the attachment is impossible with Adobe mail and/or submit controls. However; if you set the submit button to point to a server-side script such as ASP.net or PHP, the script may be able to parse the submission data (Static XFA only/ASP.net) and rename the attachment based on the form field values. Is your PDF a static LiveCycle XFA form or a dynamic LiveCycle XFA form?
Visit the following website for online examples that inject submission values into the attachment:
www.pdfemail.net/examples/

Similar Messages

  • Hello, I am trying to build a pizza menu where i can click on a pizza pic or link and than this selction is added to a muse email form, without the users need to retyp it. Anybody know how to do that? thank you for your help Peter

    I would like to know how to add a selection form a website to an muse email form with out the user to having to enter it but only clicking on the selected item. This is for a pizza menu.

    You can try this :
    http://www.qooqee.com/adobe-muse-widgets/astrolabe-muse-menu
    Thanks,
    Sanjit

  • BP address data in  Email form

    Hello,
    When I create a campaign with communication channel as "email", how can I automatically add business partner address data ( Those BP's which are in the target group) when sending emails?
    Is there a standard functionality available?
    thanks in advance.

    Hi,
    You can use the Personalized mail functionality of the CRM for adding BP address in the email form. This is the standard functionality of the CRM 5.0.
    In t code CRMD_EMAIL while creating the text of the mail form drag and drop address attributes from the left hand side Object / Attribute Business partner.
    In Business partner Object you will get all the fields of the Business Partner including Street1 street2 City, POBox etc. Drag and drop these attributes wherever you want on the mail form text.
    Hope this will help.....
    Rgds
    Mallikrjun

  • How can i transfer all my datas and email form old Mac G5 to new iMac ?

    How can i transfer all my datas and email form old Mac G5 to new iMac ?

    Generally Mugration Assistant will suffice importing all Data ito a new user, but you can manually import it...
    Users/YourUserName/Library/Mail
    Users/YourUserName/Library/Mail Downloads
    (Could be a different folder here if you chose such in Mail Prefs)

  • Little help with making an email form.

    can any of you lovely, lovely people point me in the
    direction of a good Dreamweaver CS3 tutorial on how to make an
    email form. Preferably one with a "conform email address" text
    field.
    Thanks all!
    P.S. I have tried looking.

    There is god general training available at www.lynda.com .
    Its $25 a month for online video viewing. The title is called
    Dreamweaver CS3 - Beyond the Basics.
    I also would recommend a free form mail solution like
    www.tectite.com which I have used before. It is more powerful that
    the spry widget in dreamweaver, but is on the server side and not
    the user application side.

  • How can I attach a document to the answering email form?

    How can I attach a document to the answering email form?

    Hi;
    I am not sure what you mean by the answering email form, can you describe a bit more what you are looking to do?  Do you mean the "Email Receipt" that you can set up so the form filler receives an email after submitting their form?
    Thanks,
    Josh

  • Can I create an email form that includes a field for uploading and image?

    I'd like to create an email form in Muse that allows people to submit the usual text but also allows them to browse for and upload an image that would be emailed (attached or inline) to me along with the text.
    Does anyone know if there's a way to do that directly in Muse?
    Thanks.

    Which form?
    Many of the forms are created with LiveCycle ES so it might be possible to edit the form with Acrobat X Professional. If you have the data in an SQL database, you could possibly create a data connection and import the data into the form and save a copy of the completed form. You can also use the Acrobat JavaScript 'importTextData' to import a row of data from a tab delimited data file.
    You might want to talk to other Real Estate professionals to see how they are going do this. If you have a property management program, that program might have an update to perform this task.

  • File as attachment in email form

    hi all,
    It would be a great help for me if any one can help me, how
    to send a file( minimum of 300k ) as attachment through a email
    form created in flex....
    please help me ...
    thanks

    hi all i have got a php code which sends attachments via
    mail..... Please help me how to send the file parameters to the php
    via http service send method.... i am placing the php and flex
    codes here please help Sad
    PHP code
    <?php
    $to = '[email protected]';
    $from = $_POST[email];
    $name = $_POST["name"];
    $subject = $_POST["title"];
    $emailMessage = $_POST["message"];
    $message = "\nFrom: $name\nEmail Address:
    $frommail\nContact Number: $phone\n\n $emailMessage";
    $message = StripSlashes($message);
    $fileatt = $_FILES['fileatt']['tmp_name'];
    $fileatt_type = $_FILES['fileatt']['type'];
    $fileatt_name = $_FILES['fileatt']['name'];
    $headers = "From: $frommail";
    if (is_uploaded_file($fileatt)) {
    $file = fopen($fileatt,'rb');
    $data = fread($file,filesize($fileatt));
    fclose($file);
    $semi_rand = md5(time());
    $mime_boundary =
    "==Multipart_Boundary_x{$semi_rand}x";
    $headers .= "MIME-Version: 1.0\n" .
    "Content-Type: multipart/mixed;\n" .
    "
    boundary=\"{$mime_boundary}\"";
    $message = "This is a multi-part message in MIME
    format.\n\n" .
    "--{$mime_boundary}\n" .
    "Content-Type: text/html;
    charset=\"iso-8859-1\"\n" .
    "Content-Transfer-Encoding: 7bit\n\n" .
    $message . "\n\n";
    $data = chunk_split(base64_encode($data));
    $message .= "--{$mime_boundary}\n" .
    "Content-Type: {$fileatt_type};\n" .
    "
    name=\"{$fileatt_name}\"\n" .
    "Content-Transfer-Encoding: base64\n\n" .
    $data . "\n\n" .
    "--{$mime_boundary}--\n";
    }else echo "File error! ";
    mail($to, $subject, $message,$headers);
    ?>
    Flex code...
    <?xml version="1.0"
    encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    viewSourceURL="srcview/index.html"
    creationComplete="init();">
    <mx:HTTPService id="httpService"
    url="
    http://jibysubhash.x10hosting.com/jibysk/sendmail.php"
    method="POST">
    <mx:request >
    <name>{txtname.text}</name>
    <email>{txtemail.text}</email>
    <phone>{txtphmo.text}</phone>
    <title>{txtpost.text}</title>
    <message>{txtcover.text}</message>
    </mx:request>
    </mx:HTTPService>
    <mx:Script>
    <![CDATA[
    private var file:FileReference = new FileReference();
    private function init():void
    file.addEventListener(Event.SELECT, selectHandler);
    private function selectHandler(event:Event):void
    private function browse(event:MouseEvent):void
    var filefilter:FileFilter = new FileFilter("Resume
    Files",
    "*.zip;*.doc;*.pdf;*.txt;*.rar;*.docx");
    file.browse([filefilter]);
    ]]>
    </mx:Script>
    <mx:Panel id="panel1"
    width="691" height="665"
    layout="absolute" title="Apply for the
    job" >
    <mx:Form x="0"
    y="0">
    <mx:FormItem fontWeight="bold"
    color="#000000" id="nam"
    label="Name : ">
    <mx:TextInput width="354"
    height="20" id="txtname"
    />
    </mx:FormItem>
    <mx:FormItem fontWeight="bold"
    color="#000000" id="mail"
    label="Email : ">
    <mx:TextInput width="354"
    height="20" id="txtemail"
    />
    </mx:FormItem>
    <mx:FormItem fontWeight="bold"
    color="#000000" id="phone"
    label="Phone/mobile : ">
    <mx:TextInput width="354"
    height="20"
    id="txtphmo"/>
    </mx:FormItem>
    <mx:FormItem fontWeight="bold"
    color="#000000" id="post"
    label="Post applied : ">
    <mx:TextInput width="477"
    height="20" enabled="false"
    editable="false" id="txtpost"
    text="test mail"/>
    </mx:FormItem>
    <mx:FormItem fontWeight="bold"
    color="#000000" id="upload"
    label="Upload resume : ">
    <mx:Button label="Browse"
    id="bro"
    click="browse(event);"/>
    </mx:FormItem>
    <mx:FormItem fontWeight="bold"
    color="#000000" id="cover"
    label="Cover Letter : ">
    <mx:TextArea width="507"
    height="350"
    id="txtcover"/>
    </mx:FormItem>
    <mx:FormItem label=" " >
    <mx:Button label="Send"
    id="applynow"
    click="httpService.send();" />
    </mx:FormItem>
    </mx:Form>
    <mx:Label x="210"
    y="125" text=" "
    maxWidth="300"
    id="statuss"/>
    </mx:Panel>
    </mx:Application>

  • PHP Email Form is not Emailing

    HI,
    I made a PHP email form and i was wondering if i did it
    correct. I try to send a email but for some reason it wont work
    here is the PHP code:
    <?php
    $emailSubject = 'Computer Question!';
    $webMaster = '[email protected]';
    $nameField = $_POST ['name'];
    $phoneField = $_POST ['phone'];
    $emailField = $_POST ['email'];
    $questionField = $_POST ['question'];
    $body = <<<EOD
    <br><hr><br>
    Name: $name <br>
    Phone: $phone <br>
    Email: $email <br>
    Question: $question <br>
    EOD;
    $headers = "From: $email\r\n";
    $headers .="Content=type: text/html\r\n";
    $success = mail($webMaster, $emailSubject, $body, $headers);
    /* Results Rendered as HTML */
    $theResults = <<<EOD
    ?>
    Here is the Email form:
    :<!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <form id="form1" name="form1" method="post"
    action="Contact form 505 test 2.php">
    <table width="70%" border="1" cellpadding="6">
    <tr>
    <th width="16%" scope="col"><div align="right">
    <label for="name">Name:</label>
    </div></th>
    <th width="84%" scope="col"><div align="left">
    <input name="name" type="text" id="name" size="35"
    maxlength="60" />
    </div></th>
    </tr>
    <tr>
    <th scope="row"><div align="right">
    <label for="phone ">Phone Number</label>
    </div></th>
    <td><div align="left">
    <input name="phone " type="text" id="phone " size="35"
    maxlength="13" />
    </div></td>
    </tr>
    <tr>
    <th scope="row"><div align="right">
    <label for="email">Email:</label>
    </div></th>
    <td><div align="left">
    <input name="email" type="text" id="email" size="35"
    maxlength="40" />
    </div></td>
    </tr>
    <tr>
    <th scope="row"><div align="right">
    <label for="question">Question:</label>
    </div></th>
    <td><div align="left">
    <textarea name="question" cols="26" rows="8"
    id="question"></textarea>
    </div></td>
    </tr>
    <tr>
    <th scope="row"> </th>
    <td><label for="Send Email"></label>
    <input type="submit" name="Send Email" id="Send Email"
    value="Submit" /></td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    Any help would be appreciated!
    thanks

    .oO(jumpman310)
    > I made a PHP email form and i was wondering if i did it
    correct. I try to send
    >a email but for some reason it wont work here is the PHP
    code:
    Next time please be more specific. "won't work" isn't really
    helpful.
    Anyway, the first thing to fix is the error reporting on your
    testing
    server, obviously it's not configured properly. In your
    php.ini these
    directives have to be set:
    error_reporting = E_ALL|E_STRICT
    display_errors = on
    You should get some notices from your script. After fixing
    those issues,
    you should also read about header injection and how to
    prevent it. Your
    script is vulnerable and can be abused for sending spam. Also
    consider
    to use a class like PHPMailer to make things more secure and
    convenient.
    Some further notes about your form markup:
    * It's very good that you make use of labels for your form
    controls, but
    in some cases the IDs of these controls contain spaces, which
    is not
    allowed.
    * You don't really need a label for a submit button.
    * Consider to drop all those div elements in the table
    headers - you
    don't need them. Use CSS to style the labels the way you
    want, e.g.
    form th {text-align: right}
    I also use this:
    label:hover {outline: 1px dotted #666}
    * Check the markup of the "Name" row. The 'scope' attribute
    is incorrect
    and the form control should be inside a 'td', not a 'th'.
    Micha

  • PHP email form checkbox values?

    Hello,
    I'm creating a php email form which part of it consists of a few checkboxes that I need to get the values of. My php knowledge isn't that great therefore I used a tutorial to successfully create the bulk of the form.
    I currently have 7 checkboxes set up as such:
    <input type="checkbox" id="grade_5" name="grade[]" value="Grade 5" />
    Each of these are named "grade[]" to be stored in an array called "grade".
    I know that the values are successfully stored in the array as they show up in the browser when I echo the array.
    $grade = $_POST['grade'];
    $N = count($grade);
    for($i=0; $i < $N; $i++) {
         echo($grade[$i] . " ");
    So, the part I am having trouble with is getting the values to show up in the body of the email.
    $body = "
    Grade Level(s): $grade
    All that is returned in this case is the word "Array" instead of the desired checked grade values.
    Any help is much appreciated! Thank you in advance!
    *Note: All other values (textboxes, selection dropdowns, etc.) are already successfully sent to the email.

    danedmonds wrote:
     All that is returned in this case is the word "Array" instead of the desired checked grade values.
    That's because $grade is an array. If you want to access the values, you need to use a loop. Alternatively, use implode() to turn it into a comma-separated string, like this:
    $grade = implode(', ', $grade);

  • Need help adapting David Powers PHP email form script please!

    Hi all,
    I'm fairly inexperienced with PHP and I'm trying to adapt the David Powers email form script from THE ESSENTIAL GUIDE TO DREAMWEAVER CS4 WITH CSS, AJAX, AND PHP.
    I've created a basic form so that visitors to the site can request a telephone call back from the site owner. The form asks the visitor for their name, telephone number and to select a time of day suitable for the telephone call to be made using radio buttons selecting between morning and afternoon.
    I'd like to achieve my goal with minimal validation error messages and would like to redirect to another page when a message is sent successfully. It is also important that in the spirit of the David Powers script I'm trying to work with, that it filters out suspect input, avoids email header injection attacks and blocks submission by spam bots.
    There may be a really simple solution to this since I don't want users to be able to enter an email address at all but I don't know enough to be able to figure it out just yet.
    I'd be grateful for any advice.
    See below for the code for the form including PHP so far...
    Thanks to everyone looking in in advance
    Karl.

    GEAtkins wrote:
    > I am using the redirect to a personal page from page 515
    of The Essential
    > Guide to DWCS3 in the following form:
    $_SESSION[MM_Username].php in the "if
    > login succeeds" field.
    Thank you for reminding me. There's a mistake in the book,
    which I
    discovered over the Christmas period, so forgot to send to
    friends of ED
    for the errata page.
    Don't use $_SESSION[MM_Username]. Use $loginUsername instead.
    It then works.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Email address on Portal page incorrectly copied into email form

    I have a 'staff directory' on a Portal page that contains email addresses. Upon clicking on an email address an email form pops up. However, the email address in the TO: line sometimes reflects the email address correctly, and sometimes it repeats characters from the email address - that is, my email address might be correctly copied in as Caryn@mail or incorrectly copied in as Caryncaryn@mail.
    Any help or ideas would be greatly appreciated!!

    So called e-mail obfuscation scripts may work up to a point, but client side scripts are easily defeated by turning off JavaScript.   Also, e-mail links don't work for everyone. With so many people using web mail (yahoo, hotmail, g-mail, etc...) instead of e-mail software, they may not have an e-mail client on their device.
    For many reasons, a contact form with a form to email processing script that has built-in spam protection is the way to go.
    If your server supports PHP, this script from DBMasters is good.
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    Forms to Go from Bebosoft (script generating software)
    http://www.bebosoft.com/products/formstogo/overview/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Email form not coming through to inbox

    Hello everyone.
    I've built a email form in DW CS3 (It's a custom form, not something I got from godaddy or from internet), but when you type in the info, from the form it is not coming to the inbox once you hit send. Can anyone tell me what I'm doing wrong?
    I'm using godaddy. In "action" I have: /gdform.php (Post).
    Here is the code:
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Process/Mosotomoss/Image Stager</title>
    <style type="text/css">
    <!--
    #apDiv1 {
              position:absolute;
              left:195px;
              top:17px;
              width:692px;
              height:1682px;
              z-index:1;
    .style1 {color: #FFFFFF
    #apDiv3 {
              position:absolute;
              left:193px;
              top:1700px;
              width:1020px;
              height:24px;
              z-index:2;
    #apDiv2 {
              position:absolute;
              left:301px;
              top:743px;
              width:397px;
              height:40px;
              z-index:3;
    #apDiv4 {
              position:absolute;
              left:298px;
              top:739px;
              width:603px;
              height:36px;
              z-index:3;
              background-color: #FFFFFF;
    #apDiv5 {
              position:absolute;
              left:300px;
              top:741px;
              width:509px;
              height:31px;
              z-index:3;
              background-color: #FFFFFF;
    #apDiv6 {
              position:absolute;
              left:299px;
              top:739px;
              width:353px;
              height:38px;
              z-index:3;
    #apDiv7 {
              position:absolute;
              left:305px;
              top:741px;
              width:382px;
              height:40px;
              z-index:3;
    #apDiv8 {
              position:absolute;
              left:301px;
              top:738px;
              width:822px;
              height:530px;
              z-index:3;
    #apDiv9 {
              position:absolute;
              left:299px;
              top:742px;
              width:824px;
              height:528px;
              z-index:3;
    #apDiv10 {
              position:absolute;
              left:443px;
              top:745px;
              width:401px;
              height:258px;
              z-index:4;
    #apDiv11 {
              position:absolute;
              left:300px;
              top:746px;
              width:143px;
              height:257px;
              z-index:5;
    #apDiv12 {
              position:absolute;
              left:1227px;
              top:586px;
              width:240px;
              height:272px;
              z-index:4;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_validateForm() { //v4.0
      if (document.getElementById){
        var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
        for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]);
          if (val) { nm=val.name; if ((val=val.value)!="") {
            if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
              if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
            } else if (test!='R') { num = parseFloat(val);
              if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
              if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
                min=test.substring(8,p); max=test.substring(p+1);
                if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
          } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
        } if (errors) alert('The following error(s) occurred:\n'+errors);
        document.MM_returnValue = (errors == '');
    //-->
    </script>
    </head>
    <body>
    <div id="apDiv1">
      <div align="center"><img src="images/process.jpg" width="1024" height="1685" border="0" usemap="#Map" />
          <map name="Map" id="Map">
            <area shape="rect" coords="791,45,832,73" href="blog.html" />
            <area shape="rect" coords="841,29,882,74" href="http://www.youtube.com/user/mosotomoss" />
            <area shape="rect" coords="730,44,781,68" href="store.html" />
            <area shape="rect" coords="885,30,929,76" href="https://www.facebook.com/pages/Mosotomoss/125744364118146" />
            <area shape="rect" coords="929,28,974,75" href="http://twitter.com/mosotomoss" />
            <area shape="rect" coords="670,45,722,69" href="press.html" />
            <area shape="rect" coords="611,45,660,69" href="faq.html" />
            <area shape="rect" coords="223,43,298,72" href="process.html" />
            <area shape="rect" coords="304,42,384,68" href="services.html" />
            <area shape="rect" coords="136,40,220,68" href="about.html" />
            <area shape="rect" coords="394,42,505,70" href="1on1staging.html" />
            <area shape="rect" coords="518,45,602,72" href="team.html" />
            <area shape="rect" coords="56,24,117,83" href="index.html" />
            </map>
      </div>
    </div>
    <div class="style1" id="apDiv3">Mosotomoss is an Image Staging Company and an Image Making Company</div>
    <div id="apDiv9">
      <form id="form1" name="form1" method="post" action="/gdform.php">
        <table width="100%" border="0" cellpadding="6">
          <tr>
            <td><div align="right">
              <label>First Name:</label>
            </div></td>
            <td><div align="left">
              <input name="firstname" type="text" id="firstname" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>Last Name:</label>
            </div></td>
            <td><div align="left">
              <input name="lastname" type="text" id="lastname" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>Company:</label>
            </div></td>
            <td><div align="left">
              <input name="company" type="text" id="company" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>Website:</label>
            </div></td>
            <td><div align="left">
              <input name="website" type="text" id="website" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">Email:</div></td>
            <td><div align="left">
              <input name="email" type="text" id="email" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>Phone:</label>
            </div></td>
            <td><div align="left">
              <input name="phone" type="text" id="phone" size="35" maxlength="15" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>City:</label>
            </div></td>
            <td><div align="left">
              <input name="city" type="text" id="city" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>State:</label>
            </div></td>
            <td><div align="left">
              <input name="state" type="text" id="state" size="35" maxlength="90" />
            </div></td>
          </tr>
          <tr>
            <td><div align="right">Services:</div></td>
            <td><div align="left">
              <p>
                <label>
                  <input type="radio" name="Services" value="Seminars" id="Services_0" />
                  Seminars</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Mentoring" id="Services_1" />
                  Mentoring</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Workshops" id="Services_2" />
                  Workshops</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="1on1 Staging" id="Services_3" />
                  1on1 Staging</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Marketing & PR" id="Services_4" />
                  Marketing & PR</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Nonprofit Staging" id="Services_5" />
                  Nonprofit Staging</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Business Planning" id="Services_6" />
                  Business Planning</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Customer relations" id="Services_7" />
                  Customer relations</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Business Plan Staging" id="Services_8" />
                  Business Plan Staging</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Social Media & Networking" id="Services_9" />
                  Social Media & Networking</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="Everyday Retail Store Staging" id="Services_10" />
                  Everyday Retail Store Staging</label>
                <br />
                <label>
                  <input type="radio" name="Services" value="radio" id="Services_11" />
                  Consistent & Cohesive Staging</label>
                <br />
              </p>
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>How can we help you?</label>
            </div></td>
            <td><div align="left">
              <textarea name="howcanwehelpyou" id="howcanwehelpyou" cols="25" rows="5"></textarea>
            </div></td>
          </tr>
          <tr>
            <td><div align="right"></div></td>
            <td><div align="left">
              <label>
              <input name="newsletter" type="checkbox" id="newsletter" value="subscribe me" checked="checked" />
              Would you like to subscribe to our FREE newsletter?</label>
            </div></td>
          </tr>
          <tr>
            <td><div align="right">
              <label>
              <input type="reset" name="clear" id="clear" value="Reset Form" />
              </label>
            </div></td>
            <td><div align="left">
              <label>
              <input name="submit" type="submit" id="submit" onclick="MM_validateForm('firstname','','R','lastname','','R','email','','RisEmail','phon e','','R');return document.MM_returnValue" value="Submit form" />
              </label>
            </div></td>
          </tr>
          <tr>
            <td><div align="right"></div></td>
            <td><div align="left"></div></td>
          </tr>
        </table>
        <input name="reciepient" type="hidden" id="reciepient" value="[email protected]" />
        <input name="Redirect" type="hidden" id="Redirect" value="emailform.html" />
      </form>
    </div>
    <div align="center"></div>
    </body>
    </html>

    You have this:
      <input name="reciepient" type="hidden" id="reciepient" value="[email protected]" />
    which should be
      <input name="recipient" type="hidden" id="recipient" value="[email protected]" />
    ...but I don't know if current gdform.php processor uses the recipient field, or some other mechanism. Try fixing the typo and if it still doesn't work you need to contact GD for support.

  • What product do you recommend if I need to merge different documents & email forms to fill out?

    What product do you recommend if I need to merge different documents &amp; email forms to fill out?

    What kind of documents?
    What are "email forms"?
    If you mean PDF files, use Acrobat or the CreatePDF service.

  • Problems with email form in Flex

    I've been scouring the web for an email form in Flex for several days now and am stuck because of what I think are these several areas.
    Setting up the back end - I am running wamp server 2.0 on my devolping machine and have a Windows 2008 Server with PHP set up at my disposal as well.  Most of the tutorials I've come across don't go over these configurations, I've figured a few things out, but am still rather in the dark and am unsure what I've learned is accurate.  Here are a couple questions:
    How do I set up the Flex Build Path.  For example I have a folder created in the www directory of the wamp server named mailform where I tell the HTTPService's url property to post to a php file named 'mail.php'  So would this be correct?
    <mx:HTTPService 
    id="emailService" url="http://localhost/mailform/mail.php"
    method="POST" resultFormat="xml" result="emailResult()" useProxy="false"/>  
    Do I need to change values in wamp's php.ini file.  From what I've found smtp_server, smtp_port, and php_openssl need to be changed.
    Do I need to open up a port on my router (25)?
    Would I need to use an alternative app like PEAR: Mail or phpMailer.  For testing purposes I'm using my gmail account, the client's site this is for uses a bellsouth.net account.
    2. Are problems still persisting with Flash Player 10, like illustrated in this thread: http://www.actionscript.org/forums/showthread.php3?t=196454  As msfx pointed every email form example I've downloaded, there've been many, I have not been able to get to work.  Yet as you can tell there are probably other issues I need to take care of as well.
    Please point me in any direction(s) that will help, am open to all suggestions, would just like to get a working email form done in flex so I can finish the client's site.  Thank you.

    "italiantometa" <[email protected]> wrote in
    message
    news:gk5em7$3s7$[email protected]..
    > Hi Amy,
    >
    > This isn?t spam and I hope you get the email. The tilt
    viewer is a
    > component
    > that allows the images on the screen to be moved about
    from a central
    > point in
    > a see-saw fashion ? kind of like a flat panel can be
    tilted
    > up/down/left/right.
    > I?m looking for someone with FLEX, AS2 and AS3
    experience to take a look
    > at
    > this and fix it for us. Interested?
    Is this a Flash component or a Flex component? What's the
    issue?

  • Is there a way to add an upload option to an email form? For example upload a "cad file" or "pdf"?

    Hi Is there a way to add an upload button to an email form? I want clients to upload their pdf's or cad files along with their email from the website.
    Thanks in advance!

    Hi,
    If you are using a third Party hosting like Gadaddy, than this cannot be done using Muse webform, but you can use jotform (or many available over the Internet) to create and insert the form in your Muse site. Please check the link here
    http://www.jotform.com/

Maybe you are looking for