PHP form help - results not appearing in email

Hi I have set up a simple entry form, and I am submiting it
using PHP to my email address, It works well when you fill the form
in and send it, I receive the email however the email only displays
the questions and not the answers that have been filled in on the
form. Itss driving me crazy as top why this is not working. Can
someone please help?
here is my form code, both form and PHP. Thanx

I haven't checked the form, but I had a similar problem with
my server when they upgraded their systems recently. I would
receive the email, but it was blank.
Th reason was ...
As long as your scripts do not need "register_globals" they
will work.
The default php mail command works. Again - no
"register_globals".
A lot of old and lazy written scripts rely on it. But it is a
major
security risk - even more so on shared servers - and as such
has been
disabled by default in PHP since version 3.0.3.

Similar Messages

  • Form link does not appear in email notification.

    Form link does not appear in email notification
    We have added a custom notification to the OM workflow process. The notification itself has a form attribute which provides a link to the sales order form. This works fine when notification is viewed via worklist - notifications within apps. The link does not appear in the email notification.
    Is there any alternate way to provide a form link to Oracle Applications form that can be accessed via email (after logging into application, if the user is not logged in).
    Thanks

    Similar functionality is available in PO and Req Approval process. Can you take a look at the PO Approval Process workflow? I remember the email notification does show the link, which is a URL link and has parameters in it. This functonality provides where the approvers need to modify the document which is requested to be approved. So they can click on the link, modify and close and approve if necessary.
    Are you expecting them to modify the same or you just want to show query only screen?
    There is a webpage available to see order information called Order Information (user Order Information User resp). You can send parameters to that webpage and that should show login page opening up a seperate session with all the parameters in the URL. Once logged in that should show order information.
    Thanks
    Nagamohan

  • Results not appearing in email

    I am having a problem with the email not displaying or
    attaching results. I have checked all parameters in the quiz
    preference so that is not the problem. here is what happens:
    1. I press send email
    2. I get the warning window that the it is attepmting to send
    an un ecrypted email. I hit ok
    3. I get another warning window that says it wants to open
    outlook (my default mail handler) which is casued by my pc running
    in protect mode.
    4. I allow it and after hearing a few clicks... my new email
    window opens with nothing in it but the To: address and the subject
    filled with the date.
    I have tried disabling protect mode but I get same result.
    I am using Vista 32bit, IE7, Outlook 2007, Captivate 3
    Can someone please help.

    Welcome to our community, gillt40
    If there were a single issue that seems to have plagued
    Captivate, you have hit it. E-Mail reporting is so far from
    reliable it isn't funny. The unfortunate part is that there are no
    answers. There is no magick solution for it. No setting you can
    tweak or forgot to turn on. It's all hit or miss. And judging from
    the posts I see here day after day after day that report the same
    thing, it's mostly miss.
    The fact of the matter is that the only really reliable
    reporting you will find is if you use a Learning Management System
    (LMS) as that was how Captivate was designed to work best.
    Sorry, but all I can do is tell the truth. Then stand back.
    Cheers... Rick

  • Quiz results not appearing in email body

    Using Captivate 2, I set up a quiz that is supposed to send
    its results to e-mail. In the Quiz Manager, on the Reporting tab, I
    have the following settings:
    Enable resporting for this project (checked)
    LMS: email
    Report Pass or Fail: report status as defined by report data
    Choose report data: report quiz results and slide views
    Report score to LMS as: score
    Reporting Level: report interactions and the score
    Then I publish my project. When I run the .htm, no e-mail is
    generated. The only way I can get an email to generate at all, is
    if I click on the Pass/Fail Options tab in the Quiz Manager, and
    set "If passing grade:" action: send email to: (the email address).
    This does generate an e-mail, but the body is blank, with no
    results reported within (even though I specifiying that I want the
    data in the above settings).

    I'm trying to do the same thing... having set up a small
    quiz, a pass mark, and asking for an email to show the score only,
    nothing is generated running it locally. But after uploading to my
    server and running it from there I do in fact get an email. The
    data is in an attachment POSTDATA.ATT which Windows doesn't know
    how to open. But if you change the extension to csv then XL opens
    it fine and reports as requested. The user is identified by the
    sender of the email.
    HTH

  • Many of our form submissions do not generate an email notification.

    Any ideas why about 30% of our form submissions do not generate an email notification?  We use FormsCentral for a rental reservation form and we have lost several rentals recently because we never knew about the reservations.  We hate to abandon all of the work we put into making this form work so any help is appreciated. Otherwise, we will leave Adobe very soon.

    Hi,
    The E-mail template is actually works as an HTML or CSS page. You need to use the HTML/CSS formats to send these values in the format as you want. Use <tags> to do the formating of Email template. 
    Use function to store multiple values and thn use them into Email 
    I hope this will help. 
    Thanks~ Giriraj Singh Bhamu

  • Code issue in php form - submit button not sending email

    Created a form that was originally supposed to open up to 2 pages depending on what was clicked. Clear would send you to an error page, and submit would send you to a thank you page. Decided that was a waste and so did not create the html pages. BUT, wanted the form info for the contact page.
    Here is the issue: it will not submit when submit is clicked. It clears when you click clear, but there's no email coming from the site via submit.
    Do I need to edit the php form code if I don't want the other pages? I've looked at what I have but I don't see if there is a form error or anything here. Here is the code for anyone who wants to have a look. Thanks in advance.
    <?php
    // get posted data into local variables
    $EmailFrom = "EMAIL FROM WEP PAGE - CONTACT - ";
    $EmailTo = "[email protected]";
    $Subject = "EMAIL FROM jennylowhar.com - CONTACT -";
    $name = Trim(stripslashes($_POST['name']));
    $telephone = Trim(stripslashes($_POST['telephone']));
    $email = Trim(stripslashes($_POST['email']));
    $comments = Trim(stripslashes($_POST['comments']));
    // validation
    $validationOK=true;
    if (Trim($name)=="") $validationOK=false;
    if (Trim($email)=="") $validationOK=false;
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "";
    $Body .= "name: ";
    $Body .= $name;
    $Body .= "\n";
    $Body .= "telephone: ";
    $Body .= $telephone;
    $Body .= "\n";
    $Body .= "email: ";
    $Body .= $email;
    $Body .= "\n";
    $Body .= "comments: ";
    $Body .= $comments;
    $Body .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.php\">";
    ?>

    I'm confused by that, but I know this works.
    $fname=STRIPSLASHES($_POST['fname']);
    $lname=STRIPSLASHES($_POST['lname']);
    $title=STRIPSLASHES($_POST['title']);
    $company=STRIPSLASHES($_POST['company']);
    $street=STRIPSLASHES($_POST['street']);
    $town=STRIPSLASHES($_POST['town']);
    $zip=STRIPSLASHES($_POST['zip']);
    $phone=STRIPSLASHES($_POST['phone']);
    $fax=STRIPSLASHES($_POST['fax']);
    $county=STRIPSLASHES($_POST['county']);
    $phone=STRIPSLASHES($_POST['phone']);
    $email=STRIPSLASHES($_POST['email']);
    $comments=STRIPSLASHES($_POST['comments']);
    $date=STRIPSLASHES($_POST['date']);
    $time=STRIPSLASHES($_POST['time']);
    $location=STRIPSLASHES($_POST['location']);
    $from="$email";
    $to="putemailhere";
    $subject="Submission from Contact Form";
    $msg= "This is a submission from yoururl.com.\n\n"
    . "Clients Name: $fname . $lname \n"
    . "Title: $title\n"
    . "Company Name: $company\n"
    . "Street Address: $street\n"
    . "Town:$town\n"
    . "Zip: $zip\n"
    . "Telephone: $phone\n"
    . "Email Address: $email\n"
    . "Comments: $comments\n";
    mail($to, $subject, $msg, 'From:' .$from);
    PS, go back and edit your origial post and REMOVE your email.
    Gary

  • Php Form Help

    I just developed a simple php form (my first time). I am
    trying to enable the information that is typed in the form by
    visitors, to be emailed directly to me. So far I can only get the
    person's email address and message left in information box to be
    sent to my email address. However, there are other contents within
    the form that I also need to receive. Can anyone help.
    http://www.newnie.com/informationform.php
    http://www.newnie.com/handle_form.php

    On 18 Oct 2007 in macromedia.dreamweaver.appdev, CellaMarr
    wrote:
    > When I fill out the form and press send the only
    information that I
    > receive is the "First Name", "Email Address", and
    "Project Details".
    > All the other info does not show up. Why will it only
    send some of
    > the information and not all of it? ("Phone Number",
    "Profession",
    > "Budget", "Hosting", and "Domain")
    Because you're not telling it to send them to you. Consider:
    $success = mail($to, $subject, $detail, $headers);
    This line is correct and sends the email as it should. You're
    telling
    it that you want $detail as the body of the message. However,
    when you
    load variables:
    $name = $_POST['name'];
    $email = $_POST['email'];
    $number = $_POST['number'];
    $detail = $_POST['detail'];
    $profession = $_POST['profession'];
    $entertainer = $_POST['entertainer'];
    $domain = $_POST['domain'];
    $hosting = $_POST['hosting'];
    $subject = 'Message from newnie.com'; // this is the subject
    line. you
    can make this say whatever you want
    $headers = "From: $name <$email>\n";
    $headers .= "Reply-To: $name <$email>\n";
    $to = '[email protected]'; //change this to your email
    you're only putting the contents of the 'detail' form field
    into
    $detail. You need to do something more like:
    $body = 'Name: ' . $_POST['name'] . "\n";
    $body .= 'EMail: ' . $_POST['email'] . "\n";
    $body .= 'Number: " . $_POST['number'] "\n";
    // etc
    $subject = 'Message from newnie.com'; // this is the subject
    line. you
    can make this say whatever you want
    $headers = "From: $name <$email>\n";
    $headers .= "Reply-To: $name <$email>\n";
    And your mail() statement becomes:
    $success = mail($to, $subject, $body, $headers);
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • Newly added OAF region is shown in Worklist but not appearing in Email...

    Hi,
    We have a very serious issue in our applications. We have customized Requisition Approval workflow and in the Requisition approval notificaiton, added one extra OA Framework region attribute. The region fetches some value from a custom table and renders it. This region is perfectly alright when seen from the worklist. But the email that is sent for the same notification, the region is not appearing !
    We have checked a lot but unable to find what we are missing here. If it is a problem with the region, then it shouldn't appear in worklist too. The strange thing is that this was working (region was appearing in email) in one instance. When the same code were moved to another instance, it is not working (region is shown only in worklist). Please help me as this is very urgent for us.
    Thanks,
    Arun

    OK, there is other way to check.
    1) Take the notification framework region URL from the Workflow Mailer log ( log should be STATEMENT level)
    2) and copy / paste same URL in a web Browser ( you may login as SYSADMIN user)
    3) and see if newly added region comes?
    Just check if you bounced the iAS after apply the changes on that instance.

  • Approve/Reject button not appearing in Email , but present in the notificat

    Hello Friends,
    I am using Po requisition Approval workflow in iProcurement for PR approval.
    One strange thing is happening , that in approval emails Approve/Reject button are not appearing but the same are present in the notification.
    Moreover , some people are getting emails, others are not.
    We have just started setting up the instance for the design prototype , so might be we are missing some setup/steps.
    Please suggest , what steps i am missing. Thanks !!!
    Regards,
    Amit

    Verify that the email preference for the users is not "disabled"
    Have the user login and go to the preferences link at the top.
    OR
    SELECT *
      FROM apps.fnd_user_preferences
    WHERE preference_name = 'MAILTYPE' AND user_name = '&user' Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • Edited text not appearing in emailed .pdf documents

    I use the typewriter tool to add text to an already existing .pdf document. When I save the document to a folder and reopen it, the text is visible. When I attach this document to email using Entourage, the text I edited is not visible. What am I doing wrong?

    If you go into the pdf with acrobat professional (not available w/ reader) and open the forms editing menu and double click on the field that is not appearing you can check the settings (I think it is in general settings tab). One of the setting is to make the info typed into the field visible or not visible. It could be set to not visible.

  • F4 help icon not appearing

    Hi All,
    I have a  date field type DATS in a table control in a screen layout and for that a calendar pops up on pressing F4 but the F4 icon is not visible. Can anyone please guide me on this. Thanks in advance.
    Regards,
    Arpita.

    Hi,
    1) Goto screen painter in change mode and double click on the field for which you want the symbol.
    2) Now second pop up will appear where you can change the attributes of the field there select program tab and check the Possible Entries check box as same has to be checked to get the icon with Possible Entries Key has to be either space or 2 as if it is 1 then icon will not appear.
    Make it as 2, save and activate the screen and re-run the transaction.
    It should work.
    Regards,
    Umang Mehta

  • IMessage on iPad! phone number not appearing, only email address! help!!

    for the past couple of weeks, I could use iMessage on my iPad using my phone number. but recently, my phone number doesn't show, just my email address. my phone is broke so I can't use it to fix the problem. can anyone help me, PLEASE?!

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Acrobat Fillable Form, Client is not able to email. Please Help?

    I created a fillable formin Acrobat Professional and sent it to my client. I put a "Submit form" button on the last page and Client says they get a message stating "this function is not permitted".
    I've reduced it down to be compatible with version 5.0 but they are still having a problem. Nothing is locked and I set up the form correctly. Any Help would be greatly appreciated.

    The other option is to allow submission of XML or FDF file data. Without the Reader extensions, someone using Reader can not save the file to send. However, the data can be submitted. E-mail is not very reliable for use with Acrobat or Designer forms. It is best to submit the form data to a web script.

  • SODIS, email disclosure documents not appearing in emails... SOLVED

    Hi all,
    recently uncovered a useful item to make note of, while trying to modify email headers, previously posted in Re: Email - adding custom SMTP header to outgoing email.
    In this instance, I was sending email with ABAP code using classes cl_bcs, cl_document_bcs, etc. and setting up email disclosure documents through tx SODIS. I set up disclosure documents for individual users (notably, our workflow user WF-BATCH and my User ID), but when sending email in code using those users (sender and recipient), noticed that only the Standard/Default email disclosure statement was being appended to emails as they were released from SOST.
    The problem appeared to be the manner in which I was creating the sender and recipient objects in my code. I was using cl_cam_address_bcs to create a sender and receiver (note, I have used USERNAME_FROM and USERNAME_TO to demonstrate the different users and their role in sending/receiving emails...):
    data:
        lo_bcs type ref to cl_bcs,
        lo_sender type ref to cl_cam_address_bcs,
        lo_recipient type ref to cl_cam_address_bcs,
        lv_ret type os_boolean.
    lo_bcs = cl_bcs=>create_persistent( ).
    lo_sender = cl_cam_address_bcs=>create_user_home_address( i_user = 'USERNAME_FROM' ).
    lo_bcs->set_sender( i_sender = lo_sender ).
    lo_recipient = cl_cam_address_bcs=>create_user_home_address( i_user = 'USERNAME_TO' ).
    lo_bcs->add_recipient(
        i_recipient = lo_recipient
        i_copy = '' " CC indicator
    * create document and add to lo_bcs with lo_bcs->set_document( lo_doc )
    lv_ret = lo_bcs->send( ).
    This is fine and will work to send to external addresses (i.e. to send an email to Outlook) but if the sender is WF-BATCH, it will not find the correct disclosure document I created for WF-BATCH.
    After much debugging, I noticed that the address type of the sender had to be 'B' (SAP User) when the disclosure document was selected, but the cl_cam_address_bcs doesn't allow creation of SAP User addresses. It only allows the six (6) external comm. types INT, X400, RML, PRT, PAG and FAX. No 'B'. Problem.
    I found it here:
    FG SOE2
    FM SO_OBJECT_MIME_GET
    FORM GET_MIME
    Class method cl_bcs_send_request->as_mime_message( )
    Class method cl_bcs_send_request->add_disclosure_to_mime( )  [added as part of OSS Note 1086090]
    Class method cl_disclosure_bcs->get_disclosure( )
    Class method cl_disclosure_bcs->resolve( )
    (Here you can see the try statement and a case statement - this is where the action happens)
    However, this class cl_cam_address_bcs does implement interface if_sender_bcs, so it was relatively easy to find out what other classes implement if_sender_bcs. Turns out, cl_sapuser_bcs does this and it defaults to the address type 'B' - SAP User. So I replaced the above code in my program, with the following:
    data:
        lo_bcs type ref to cl_bcs,
        lo_sender type ref to cl_sapuser_bcs,
        lo_recipient type ref to cl_sapuser_bcs,
        lv_ret type os_boolean.
    lo_bcs = cl_bcs=>create_persistent( ).
    lo_sender = cl_sapuser_bcs=>create( 'USERNAME_FROM' ).
    lo_bcs->set_sender( i_sender = lo_sender ).
    lo_recipient = cl_sapuser_bcs=>create( 'USERNAME_TO' ).
    lo_bcs->add_recipient(
        i_recipient = lo_recipient
        i_copy = '' " CC indicator
    * create document and add to lo_bcs with lo_bcs->set_document( lo_doc )
    lv_ret = lo_bcs->send( ).
    Et voila! The disclosure statement for USERNAME_FROM was applied perfectly.
    Now there are other ways to achieve this, such as using the email address filter when creating the disclosure document, but I like to keep it to the system-used username rather than an ambiguous email address that could potentially change.
    So if you find that your disclosure documents aren't being applied correctly in code-generated emails, there's your answer. Hope that little break-down helps someone.
    Hagen

    Hi
    What are the values we need to pass for lo_doc
    Regards
    Madhan D

  • Flash/PHP form help

    I have posted this before a while back, but never figured it
    out. I think I am really close.
    When my form gets clicked, the following gets triggered:
    var result_lv:LoadVars = new LoadVars();
    result_lv.onLoad = function(success:Boolean) {
    if (success) {
    this.tf_showAlertMsg.text = "Thank you for sending us an
    email";
    } else {
    this.tf_showAlertMsg.text = "Email did not go through";
    var send_lv:LoadVars = new LoadVars();
    send_lv.Name = tName;
    send_lv.FromEmail = tEmail;
    send_lv.Subject = tSubject;
    send_lv.Comments = tMsg;
    send_lv.Newsletter = tCheckBox;
    send_lv.status = "";
    send_lv.sendAndLoad("php/sendContact.php",result_lv,"POST");
    this.showAlertMsg("Sending...");
    Everything gets sent and all is working great. The only thing
    that does not work is the ifStatement in the result_lv never gets
    triggered. I think that this has to do with my php. I don't really
    speak php and so I am having issues with it.
    In the php I have two echos, which I was told I could use
    with the result_lv. I think that my result_lv, does either not know
    what it is listening to, or that my echos are wrong. The echos in
    the php look like this.
    //if($debug)
    echo "mes1 $ToEmailType $ToEmail $Subject $Message From:
    $Name $FromEmail\n ";
    and
    echo "&Status=Your quote request has been sent.";
    What do I have to do, so Flash receives the echo and I can
    tell the user that the info has been received.
    Thanks a lot for help with this!

    OK, great, I am getting closer! Thank you so much.
    I now get the "Email did not go through" case. The email gets
    sent though, so I am not sure why that is happening. I am assuming,
    where you say //find out if it's working first is working because
    the if statement gets triggered.
    How can I proceed from here?
    Thank you so much!

Maybe you are looking for

  • How to get the r,g,b value of a pixel in a picture

    Hi, there How can I get the integer value of the r, g, b value of a pixel in a picture. This picture is loaded from a file, such as jpg or gif. That means the absolute position of the left corner of the picture may be float when you change the size o

  • OS X 10.9.4 (13E28) crashing Skype

    Hello everyone, I have a mac book pro with OS X 10.9.4 (13E28)  and the latest version of Skype, but when I log in on Skype about 2 minutes after it crashes showing the error bellow. Does anyone have an idea how to fix that? Error: Process:         S

  • HDV to Mpeg-2?

    I am working with HDV 23.98 progressive footage in Final Cut Pro. Its final output will be an SD DVD. I exported my sequence to compressor for a Mpeg-2 Widescreen SD (60 minutes) output. Next, I am imported to DVD Studio Pro for the build. I simulate

  • Does iPhone calendar sync with Calendar in Novell GroupWise?

    My business calendar is on Novell GroupWise; will the iPhone sync with this calendar if I set up iTunes on my office PC?

  • How to deauthorized my computers for iPod Classic

    iTunes tells me that I can't sync my iPod Classic because I 5 machine authorized for usage. One of my machine is no longer in service " hard drive cooked " and does not boot up. Can you tell me how to sync my iPod with a new machine. I have deauthori