Email a form without Cold Fusion

Hi everyone,
I have a client whose hosting doesn't provide Cold Fusion. on
his website, there is a form that the content must be emailed to
him after customer submission. Is there anyway to do it without
cold fusion, Cfmail command?
thanks in advance.

you can just use a regular mailto with a form, and it will
send. However the
formatting on the receiving end is somewhat of a pain in the
"Shida" <[email protected]> wrote in message
news:eo1cgi$s0o$[email protected]..
> is there any way other than CF or ASP or PHP?
> I have heard of some kinds of web forms, but I don't
know about them
> either.

Similar Messages

  • Is there anyway to email adobe form without opening email clinet application

    I have a form, and it has a submitbyEmail button, it attaches the form to email, and the email addresses are already populated, but the user still need to go and press send on the email application to send it. Is there anywhy send the email with pdf form attached without user have to push the sent button?

    this.mailDoc({
    bUI: false,
    cTo: "[email protected]",  //enter the destination email address here
    There are other parameters for mailDoc that you can read about in the JavaScript reference.

  • Email fillable form without having to save

    Hi,
    I am using Acrobat Pro 9 to create a fillable form and the users of this form will have Acrobat Reader 9 or earlier.
    Is there a way to email a completed, fillable pdf so the recipient of the email will receive the completed form but the sender does not have to save the form prior to sending? 
    I've created this fillable form on a shared network drive for our staff to complete when they want to request time off from work.  In order to avoid using paper, I want them to fill out this form electronically and email it to their supervisor but I don't want them to be able to save the filled out form.     I tested the form and when I fill it out and send it to myself, it comes back as blank...unless I save a copy of it which I don't want to do.
    Any comments would be appreciated.
    Thanks!

    Thanks for the response Bill.  The form was created using Acrobat Pro 9.
    I understand the concept of having to save the form but not the data however most of my staff are not very computer literate and I need to keep it as simple as possible:  
    1. Open the form, fill it out and hit Send.
    2. Recipient opens the email, clicks the attachment and reads the form. 
    I don't mind setting things up and doing the hard work but if the users have to do anything other than 1 and 2, then its not worth setting up.
    I guess the main issue with staff keeping a copy of the form is that they can then go back, change something on the form (ie, the date they want time off from work) and then resend the form.  Sounds childish but you don't know the people I work with.  lol
    Maybe I should ask:  is there a way to automatically generate a date stamp on a document once it is saved and it can't be deleted or altered?  If a completed form is sent to the supervisor and the date stamp is before the current date, the supervisor will know that the form was altered.
    Thanks,

  • Is there a way to email a form without it going to the outbox of the sender

    I'd like to use fillable forms on my website. The problem happens when the submit button is selected and if the user has Outlook or a MAPI mail program, the PDF form goes to the Outbox.  I have no way of telling if responders have a MAPI complient email app or not.  The Outlook users would have to wait until they perform a send/receive.  Is there anyway to avoid this and immediately send the email to the address intended???

    No, the document has no way of controlling this. Users may not even have a working email client installed, and instead have to manually attach the form or data file to an email. Many people use web-based email clients.
    A much more reliable approach is to set up the form to be submitted to a web server, but this involves programming and managing the server. You can also distribute the form in Acrobat and use the Acrobat.com option of collecting the forms. The downside is you have no control of the server when things go wrong or if you need to customize.

  • Problems with Cold Fusion Forms

    Hey Everybody -
    Pretty new to these forums and cold fusion in general. I
    created a number of forms in cold fusion for a school. They sign up
    for classes and when they fill out ALL text fields they
    successfully submit the form and they see a success page. Sounds
    great right? well kind of.
    If a user doesnt fill out the entire form, and submits it
    gives them an error with coldfusion errors. So I am faced with a
    few choices. I can either: have the form forward them to an error
    page instead of the coldfusion error, or if there's a way I can
    fill in the null values so that there isnt a problem with nulls. I
    want to have validation but I want it in a seperate page since I
    dont have the room to add errors in the form itself.
    Any help would be great. Thanks in advance.

    I always do ALL my form validations with a client-side JS
    **and** with server-side CF.
    I don't use <cfform>, I know <cfform> is
    dependant on the java version the user has installed on their end.
    I know I came across quite a few issues where on one machine the
    <cfform> worked fine, and on another it konked out.
    Anways, this is one of my most basic forms:
    =============================================
    PAGE1.cfm
    <html>
    <head>
    <script>
    function validate() {
    var IA = document.ContactUs;
    var errorMSG = "";
    if(IA.FullName.value == "") {errorMSG += "Full Name\n";}
    if(IA.Email.value == "") {errorMSG += "Email\n";}
    if(errorMSG != "") {
    alert("The following fields are required:\n\n" + errorMSG);
    return false;
    </script>
    </head>
    <body>
    <form name="ContactUs" action="page1_x.cfm" method="post"
    onSubmit="return validate();">
    <table>
    <tr>
    <td align="right">Name: </td>
    <td align="left"><input type="text" name="FullName"
    maxlength="50" size="25"></td>
    </tr>
    <tr>
    <td align="right">Email Address: </td>
    <td align="left"><input type="text" name="Email"
    maxlength="50" size="25"></td>
    </tr>
    <tr>
    <td align="right">Comments: </td>
    <td align="left"><textarea name="Comments"
    cols="20" rows="5" id="comments"></textarea></td>
    </tr>
    <tr>
    <td colspan="2">
    <input type="submit" name="SubmitContact"
    value="Submit">
    <input type="reset" name="Reset" value="Reset">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    =============================================
    =============================================
    page1_x.cfm
    <cfif isdefined("FORM.SubmitContact") and FORM.FullName
    NEQ "" and FORM.Email NEQ "">
    <!--- is all is OK, do whatever it is you want to do.
    --->
    <cfelse>
    <!--- if the submit button was no clicked, fullname and
    email (required fields) not filled out, send them back to the form
    --->
    <cflocation url="page1.cfm?status=1" addtoken="no">
    </cfif>
    =============================================
    Now, there is sooooo much more you can here for a full blown
    error-proof script. You can also check if the e-mail is a valid
    e-mail (server side), and if the field is a numeric field (like zip
    code, phone number, etc) then check if that field is valid, etc.
    This is just a run-of-mill simple form and validation
    submission using both client-side JS and server-side code.

  • (Silence)Email a form

    How I can email a form without opening in my case the Microsoft Outlook dialog email window?
    Similar like silence printing the form(Here we use the False item).
    Is it possible?
    Thank you

    You can use the mailDoc method, but it has to execute from a privileged context for it to send without showing the UI. For more information, see: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.505.html
    You should use a try block to catch any errors.

  • Submitting Forms without email programs

    Hi,
    I was wondering if there was any way to submit the pdf forms without having to rely on an email program such Outlook. Is there any way a code can be written to be able to submit forms where they don't have to be attached to the email prior to be sent? Sort of like forms that we fill online.
    Thank you!!!!!!!

    Yes, in this case Acrobat.com is the web server that I talked about. Your client would need to set up an account there and distribute the form using their own licensed copy of Acrobat.
    The downside to using Acrobat.com is troubleshooting when things go wrong on the server end, which I've experienced a number of times. Since it is controlled by Adobe, there's very little you can do when things don't work as expected.
    I'll try to find some other resources to direct you to for other approaches.

  • 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

  • Integration of Cold Fusion and Adobe Livecycle form

    I created a adobe dynamic xml form and I also created a sample cold fusion script which reads all the fields from the pdf and populates them in to a structure.
    <cfpdfform action="read" source= "FORM PATH" result="formData" /> 
    <cfdump var="#formData#" label="formData" />
    When I run this script the structure shows me blank fields.
    Cold fusion version is 8.
    Please share your thoughts on this.
    Many Thanks,
    Nav.

    Hi,
    I'm thinking of possible reason for your problem.
    Check these solutions, maybe they can help you.
    http://blogs.adobe.com/dmcmahon/2011/02/01/livecycle-designer-flowed-layout-in-headerfoote r-subforms-incorrect/
    http://blogs.adobe.com/dmcmahon/2011/10/10/lc-forms-es-text-overlapping-on-page-break-usin g-nested-subforms/

  • Cold Fusion Developer on Intel Mac

    I just ordered an Intel Mac....will I be able to install cold
    fusion on it for development?
    I saw the system requirements posted on the site were for
    Power PC processors. So I was just curious if anyone has
    successfully used cf with Intel yet; without problems.
    Thanks,

    Many of us have this running on Intel just fine.
    Heres probably the two best links out there to get it
    working..
    http://webmages.com/cfmxIntelOSXguide.html
    http://cyberdust.wordpress.com/2006/04/12/cfmx7-on-macbook-instructions/
    Cheers
    Brendon
    "jmortimer" <[email protected]> wrote in
    message
    news:eljlv4$8jr$[email protected]..
    >I just ordered an Intel Mac....will I be able to install
    cold fusion on it
    >for
    > development?
    > I saw the system requirements posted on the site were
    for Power PC
    > processors.
    > So I was just curious if anyone has successfully used cf
    with Intel yet;
    > without problems.
    >
    > Thanks,
    >
    >

  • Contact form without PHP Help!

    I'm trying to create a contact form to send an email to me
    when they click on the submit button. I'm using the "getUrl and
    Mailto). It works when I set the variables manually, but I can't
    get it to store the value of the user input fields to use in my
    message body.
    This has got to be a simple matter of syntax or placement of
    the var function. Please forgive me for being such a newbee!
    Thanks in advance for any help.

    I don't think you're going to have any luck processing a contact form without the support of some server-side scripting that is capable of interacting with the server.

  • Cold Fusion Mac Compat?

    Can you run the latest Cold Fusion version in association
    with CS3 Web Premium for Mac on a Mac without a Windows
    shell?

    Scooter,
    I use a Macbook Pro (OS X 10.4.9) and run CFMX 7.0.2 (on top
    of JRun 4 and NOT as a standalone web server) with no issues. I
    also have CS 2.3 Premium on my machine. I will be getting CS3 in
    about a week or two when it releases but there should be no issues
    whatsoever with this configuration.

  • Digital Signature - Cold Fusion

    we are in the process of implementing Digital Signature
    process with PKI technology complaint. Reports is geneated as a PDF
    format using cold fusion tools. Is there is any feature to
    implement digital signature process in Cold Fusion. since Cold
    Fusion is a Adobe Product ? How Can I take advantage of that ? Any
    suggestion/help is really appreciated.

    I am really interested about this topic. I am in the same
    condition of CF100. I have to build an application where the user
    have to sign a form with his digital signature. I hope that someone
    from Adobe can help us about this issue

  • Cannot browse server following installation of hotfix 4 to Cold Fusion 9.0.1

    Hi
    I've been tasked with updating a ColdFusion 9.0.1 installation to the latest patches.  I've started with Hotfix 4.  The installation appeared to go OK, and the services started after I applied the update.  However, when I went to moved onto the next update (APSB13-10) starting by browsing to the update file I ran into a problem.  When I click on the "browse server" button to locate the .jar file for the next update I encounter an error:  "Unable to authenticate on RDS server using current security information".  I've also found that if I try to put the full path into the Update File line and hit "Submit Changes" it errors.
    This seems to be the same problem as http://forums.adobe.com/message/5256752#5256752, but there's no solution to the problem in that discussion.
    I've checked the RDS settings, and RDS is unchecked.  I notice that this screen is different from the pre-upgrade screen, but this seems to be as a result of, I think, APSB13-03, which is included in HotFix 4.  If I try to make any changes on this screen it errors and logs me out of the Cold Fusion administrator.  I've tried commenting out the RDS section in the web.xml file, but this gives me a different error.
    I'm doing this on an isolated test server which has no access to the network.  If I revert to the snapshot I took before the upgrade attempt ColdFusion runs as expected.
    Any ideas what might be the problem?  Thanks in advance.

    In case it helps anyone I've realised what I was doing wrong here.
    The main “problem” was that one of the updates included in Cumulative Hotfix 4 is APSB13-03 (http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix-apsb13-03.html).  I knew this changed the behaviour of RDS but my knowledge prior to this work of ColdFusion and in particular RDS was very limited, and so I didn't understand the implications of this hotfix.  What this update does is disable RDS by default; I wasn't really aware what the RDS status of my server was prior to the update, partly because before this update there is no "disable RDS" tick box to show whether it is enabled or disabled.  With RDS disabled, you can't browse as the update instructions require you to do.  Obviously RDS was enabled on my setup without me realising it.
    My understanding of this wasn't helped by the fact that when I tried to paste a path into the box and hit the "update" button I got a different error, which I described in my original post.  Similarly if I tried to change RDS settings, or do pretty much anything in the administrator, it failed and logged me out in the same way.  It seemed to me that the whole thing was broken by the updates and I didn't know how to fix it.
    So, following the excellent advice of Charlie Arehart in two articles: http://www.carehart.org/blog/client/index.cfm/2010/12/12/cfmyths_cumulative_hotfixes and http://www.carehart.org/blog/client/index.cfm/2011/10/21/why_chfs_may_break, I went back to the start and installed the cumulative hotfixes one by one.  Although I don't think I actually needed to do this, as Hotfix 4 seems to contain all the previous hotfixes, it did help me realise that the browsing/RDS issue and the error and logout when I tried to do anything in the administrator were two different problems. After further bit of googling I found people suggesting that you should use https to access the administrator, but the shortcut I had was taking me to http (as far as I know I was using the default shortcut).  I found that by going to https the problem of being logged out when trying to do anything disappeared and I could put a UNC path in to update the .jar file for the next update.  I also was now able to enable RDS for single password and could browse like the hotfix instructions advise.  I've since disabled RDS and accepted the inability to browse as a "feature", happy that it's more secure as a result.
    So my “problems” were largely self-inflicted due to my own ignorance of the product, but it wasn’t helped by Adobe’s apparent inability to grasp that there may be similarly ignorant people attempting these updates.  It would have been nice to see some guidance from them.  Furthermore, the cumulative hotfix 4 page (http://helpx.adobe.com/coldfusion/kb/cumulative-hotfix-4-coldfusion-901.html) doesn’t even mention RDS, let alone that the default behaviour changes.  It’s only when you check the individual hotfix information that you can see the information that helped me to realise where I was going wrong.
    As for using https not http; great, but if I’m right that my shortcut is the default out-of-the-box shortcut, where’s the information to advise to change to using https as a result of one of the hotfixes included in hotfix 4 (originally, I think, hotfix 2)?  It’s certainly not mentioned on the page for cumulative hotfix 4. 

  • Flashbuilder and Cold Fusion  (using application/session variables)

    I would like to know if anybody uses Flashbuilder with Cold Fusion?
    Since Cold Fusion has lots of different scopes of variables (application, session, client, form, url, etc...) how do you manage this in Flex/Flashbuilder?
    Are there forums or groups specifically for using Flex3/Flashbuilder with backend server side technologies such as Cold Fusion?.
    The only server side technology that I have interest in is Cold Fusion.  I've seen basic tutorials and videos using Cold Fusion CFC's and data binding with Flex.  I haven't seen or heard anything using a Cold Fusion application, session, or client variable in Flex.
    Hopefully some of you have some experience on this topic.
    Thanks

    hey popster,
    i too had this question some time ago. my entire app was built on CF with HTML before i started integrating Flex 3 with it. i found that i needed to create cookie variables for all my session variables i was using in order to maintain and remember who the user was in my CFC calls. i also found that after i compiled a flex app, i changed the .html to .cfm (the file that loads the compiled SWF file). by doing this i was able to pass CF session variables into the flex app and you can refer to these anywhere in Flex by using Application.application.parameters.{variable name here} 
    add the CF variable in the FlashVars line to pass it into Flex (see the last line of code). this will create a variable (in my case i'm passing session.employeenumber). then in your flex app you can reference it by using Application.application.parameters.emplid:
    AC_FL_RunContent(
       "src", "Request",
       "width", "100%",
       "height", "87%",
       "align", "middle",
       "id", "Request",
       "quality", "high",
       "bgcolor", "#869ca7",
       "name", "Request",
       "allowScriptAccess","sameDomain",
       "type", "application/x-shockwave-flash",
       "pluginspage", "http://www.adobe.com/go/getflashplayer",
       "wmode","transparent",
       "FlashVars","emplid=<cfoutput>#session.employeenumber#</cfoutput"
    A little trick I learned (does Adobe really expect us to re-engineer how our apps have been working by no longer using sessions for Flex?). Then in your CFCs if you also create cookies for every session variable you can maintain the variables based on user login. HOPE THIS HELPS!
    -Matt

Maybe you are looking for

  • Print Prog-Auto Print Barcode Label for Goods Receipt(MIGO) using Smartform

    Hi Guru's I have created a smartform that prints barcodes on a label. My tests print successfully to the Printronix thermal label printer. Is there perhaps a SAP Standard print program that i can use in my output type that will call my smartform upon

  • Why can't I open files from ACR to CS5?

    I have been using CS5/Bridge/ACR for a year now and all of the sudden, I cannot get the RAW images from ACR into CS5.  I always open my RAW files from Bridge, make my adjustments in ACR, then select all and open images into CS5.  This has always work

  • File name created on run time

    did anyone face this issue that file name is created with digit? insert into "D:\Inbox/26"      STUDENT_ID, STUDENT_NAME this is the code of step of inserting rows.I dont know why wrong file name is generating.I am using variable for file name.I chec

  • Index in not used

    Hi Guys, I have a table FOLDER_CUSTOMER which has two columns folder_id and customer_id. We have index on the customer id but the customer_id is in this format '000900000000000000000000035102' which is same for most of the customers except the last 5

  • Poor Output End of my Tether !!!

    Hi  Have spoken to BT they tested everything, Changed my hub to an old router to test, connected wirelessly, with cable, no other devices attached etc etc but can only receive or get out around 2mps What the hell is the problem, was fine untill a few