XML email help......

Hi, I have an XML flash cart for my flash site, but i'm trying to use it as a quoting system instead of purchasing. The customer adds to the quote (cart) where everything adds up like a cart but instead of payment i want it to email me the quote details for a follow up. Similar to an email form. I'm using PHP to send it and it sends all the details but it isn't legable. Here's an example of what it sends; amount%5F1=29%2E95&item%5Fname%5F1=%27THE%20BLUES% 27%20CD&quantity%5F1=1&upload=1&cmd=%5Fcart So the amount, product name and price are all there but it has all the other characters in between. Is this a ignoreWhite problem? 
I'm a flash Newbie, so I'd really appreciate your advise

Thanks kglad
Here's my actionscript, i've used the LoadVars, but maybe i've done it wrong?
function purchase() {
quote = new LoadVars();
quote.cmd = "_cart";
quote.upload = "1";
var receiveLoad:LoadVars = new LoadVars();
var sendLoad:LoadVars = new LoadVars();
for (n=0; n<cart.length && n<21; n++) {
  quote["quantity_"+(n+1)] = cart[n].qty;
  quote["item_name_"+(n+1)] = cart[n].name;
  quote["amount_"+(n+1)] = cart[n].price;
   sendLoad.quote = quote;
  sendLoad.sendAndLoad("send.php",receiveLoad);
  trace(quote);
_root.orderform.submit.onRelease = purchase;

Similar Messages

  • When I use Firefox for Yahoo mail the tabs such as sign out, search email, help seem to be disabled. How do I make them work? Works in Internet Explorer

    There are a number of tabs at top of my inbox such as sign out, search email, help, etc. They do not work. For example cannot insert a name for search email- will not give me the curser to do this. When I use internet explorer these tabs do work so not a problem with Yahoo mail- must be problem with Firefox. Recently updated Firefox.

    SafeBrowser posted Recently, the Yahoo Toolbar and the Babylon extension have been reported to cause that problem. They seem to overlap invisibly over the top of the web page display. If you have either or both, uninstall or disable them/it, or see if an update is available that solves the problem.
    See --> http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    I disabled the Babylon extension and Yahoo Mail works now.
    Thank you SafeBrowser

  • I'm trying to sync my iPhone with my iTunes account, but they are on two different emails, help!

    I'm trying to sync my iPhone with my iTunes account, but they are on two different emails, help!

    I really don't know what this means.
    What do you mean "when I try to change the email on my itunes"?
    Where on itunes are you changing an e-mail?  and for what reason?
    Not sure at all what you are trying to do an it seems that you are confusing e-mail, itunes accoutns and libraries.
    Please explain exactly what you are trying to accomplish.
    You have music on your computer?  You want that music on your iphone?

  • HT5312 I can't get my rescue email to go to my email, help?

    How do I get my rescue email to go to m email, help?

    Follow the instructions on the page that you posted from i.e. if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then steps 1 to 5 half-way down that page should give you a reset link.
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions), or you aren't receiving the reset email to your rescue email account, then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • I suddenly cannot receive or send emails - help?

    I suddenly cannot receive or send emails - help?

    I had this problem. I checked all settings and they were correct. Purely by chance I changed the setting to recieve emails from manually to every fifteen minutes. This generated a request for my apple ID and I began to receive my emails again. Hope this helps.
    Sibelius5

  • Apple mail out of office rule is sending auto replies to all emails not just newly received emails--HELP!

    Apple mail out of office rule is sending auto replies to all emails not just newly received emails--HELP!  I set up the rule according to another apple support thread and instead of only sending the reply to new mail received, it was sent to all messages I believe that were in my INBOX, thankfully I only had a few but several people that hadn't sent me emails since I set up the rule, received the OUT OF OFFICE reply.  Please help.  Here is the procedure I followed for the out of office rule-
    http://www.ecu.edu/cs-itcs/mac/Apple-Mail-Out-of-Office-Replies.cfm
    I just used my email account which is a business account- not an ECU account but these rules according to the apple thread apply for all emails. Thank you

    You can set it easily...
    To access this feature in Apple's Mail app, right click on any sub-folder (like your exchange inbox on the left) and choose "Get Account Info." A window will pop up that looks like the one below. Make sure to select your Exchange account from the Account dropdown. Then click on the Out Of Office tab. If you have ever put in an Out of Office message in the past it will be displayed here. You can adjust and set your Out of Office from Apple Mail from within this tab.
    Screenshots at:
    http://blogs.appriver.com/blog/behind-the-scenes/setting-out-of-office-from-appl e-mail-app

  • I have iPad 3 stop on icloud i dont no what is the email but i have box of the ipad how i open it without icloud email help plz

    i have iPad 3 stop on icloud i dont no what is the email but i have box of the ipad how i open it without icloud email help plz

    Read this about Activation Lock
    http://support.apple.com/kb/PH13695

  • XML Data- Help??

    Hi,
    I have a probelm like how to get node vale from xml file if xml file contains html data.
    I would appreciate your help.
    I want retrive the value of node1 as
    <html><body><h1>Hello</h1></body></html>
    Example:
    <static_info>
    <node1>
    <html><body><h1>Hello</h1></body></html>
    </node1>
    <node2>
    some text
    </node2>
    </static_info>
    Thank,
    Ravi

    tyr to use a SAX Parser and methods of that.
    I give u a small example
    =====================================================
    public static String getNodeValueByName(Node node, String name) {
    // Node value
    String value = null;
    try {
    if (node != null) {
    // Get all the child nodes
    NodeList children = node.getChildNodes();
    // Number of child nodes
    int childLen = children.getLength();
    // Traverse the child nodes to get the required node
    for (int ctr = 0; ctr < childLen; ctr++) {
    Node child = children.item(ctr);
    // If this node matches the given Node name
    if ((child != null) && (child.getNodeName() != null)
    && child.getNodeName().equals(name)) {
    // Get the Text node
    Node grandChild = child.getFirstChild();
    // Get the node value
    if (grandChild.getNodeValue() != null) {
    value = grandChild.getNodeValue();
    break;
    } catch (NullPointerException ne) {  // No match found
    value = null;
    return value;
    ==========================================
    thanks and regards,
    Amanpreet
    [email protected]

  • XML Shredding help.

    declare @x xml = '
    <obj xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:vim25"
    versionId="5.5" xsi:type="ArrayOfGuestStackInfo">
    <GuestStackInfo xsi:type="GuestStackInfo">
      <dnsConfig>
         <dhcp>false</dhcp>
      <hostName>YODA</hostName>
      <domainName>yoda.starwars.com</domainName>
      <ipAddress>127.0.0.1</ipAddress>
      <ipAddress>8.8.8.8</ipAddress>
      <ipAddress>9.9.9.9</ipAddress>
      <searchDomain>laya.starwars.com</searchDomain>
      </dnsConfig></GuestStackInfo>
    </obj>'
    ;WITH XMLNAMESPACES ('http://www.w3.org/2001/XMLSchema' AS xsd,'http://www.w3.org/2001/XMLSchema-instance' AS xsi,'ArrayOfKeyAnyValue' as type,'urn:vim25' as [default])
    SELECT t.u.value('(./default:dnsConfig)[1]','varchar(500)') as [Key]
    FROM @x.nodes('/default:obj/default:GuestStackInfo')t(u)
    undesirable output:
    falseYODAyoda.starwars.com127.0.0.18.8.8.89.9.9.9laya.starwars.com
    I want this output:
    dhcp Hostname domainname          ipaddress searchDomain
    false YODA       yoda.starwars.com 127.0.0.1 laya.starwars.com
    false YODA       yoda.starwars.com 8.8.8.8     laya.starwars.com
    false YODA       yoda.starwars.com 9.9.9.9     laya.starwars.com
    XML name spaces confuses me.  Please help. Thanks in advance.
    -scott
    scott

    ;WITH XMLNAMESPACES ('http://www.w3.org/2001/XMLSchema' AS xsd,'http://www.w3.org/2001/XMLSchema-instance'
    AS xsi,'ArrayOfKeyAnyValue' as type,'urn:vim25' as [default])
    SELECT t.u.value('(./default:dhcp/text())[1]','varchar(5)') as DHCP,
           t.u.value('(./default:hostName/text())[1]','varchar(50)') as hostName,
           t.u.value('(./default:domainName/text())[1]','varchar(500)') as domainName,
           t.u.value('(./default:searchDomain/text())[1]','varchar(500)') as searchDomain,
           IP.c.value('(./text())[1]', 'varchar(15)') AS IPaddress
    FROM @x.nodes('/default:obj/default:GuestStackInfo/default:dnsConfig')t(u)
    OUTER APPLY t.u.nodes('default:ipAddress') IP(c)
    Erland Sommarskog, SQL Server MVP, [email protected]

  • XML email Bursting error in R12

    Hi,
    We are calling Bursting Concurrent program ‘XDOBURSTREP’ from our custom package in order to send emails separately to required customers.
    Bursting Conc.Prog is giving the following error.
    Log file is as follows:
    [070212_125055615][][EXCEPTION] java.lang.NullPointerException
         at java.util.Hashtable.put(Hashtable.java:394)
         at oracle.apps.xdo.oa.cp.CPUtil.setProperty(CPUtil.java:67)
         at oracle.apps.xdo.oa.cp.CPUtil.getSessionProperties(CPUtil.java:45)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:84)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    XML/BI Publisher Version : 5.6.3
    Request ID: 534793
    All Parameters: Dummy for Data Security=:ReportRequestID=534792:DebugFlag=Y
    Report Req ID: 534792
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:PURNA
    Preparing parameters
    null output =/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o534793.out
    inputfilename =/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o534792.out
    Data XML File:/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o534792.out
    Set Bursting parameters..
    Temp. Directory:/usr/tmp
    [070212_125057111][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.5.0 - Production
    [070212_125057333][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=534792, user-variable:cp:language=en, user-variable:cp:responsibility=50661, user-variable.OA_MEDIA=http://purna.ad.infosys.com:8004/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=534792, user-variable:cp:locale=en-US, user-variable:cp:user=SEETHALAKSHMI_R01, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=534793, user-variable:cp:reportdescription=BIBS Network Buyback Invoice Report, user-variable:cp:Dummy for Data Security=}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    And the output for the burst conc.prog is as follows:
    <LOG>Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..</LOG>
    Can someone help me on this. It’s a bit urgent…..Please suggest!!!
    Thanks,
    Teja

    Control file I used:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    - <xapi:request select="/REPORT/CUSTOMER">
    - <xapi:delivery>
    - <xapi:email server="testexchange.testsmtp.com" port="25" from="[email protected]">
    <xapi:message id="123" to="[email protected]" attachment="true" content-type="html/text" subject="${SUBJECT_PART} ${EMAIL_ENTITY_NAME} INVOICE(s) for ${EMAIL_CUSTOMER_NAME}">This is a system generated message - any reply to the message is unmonitored and deleted. If you need further assistance- please send reply to mailto:XXX. Attached is a PDF file containing your ${EMAIL_ENTITY_NAME} invoices generated within the past 24 hours. If you believe you are missing any invoices or you are not able to open the file, please contact us at XXX. For questions relating to your account, please contact the Customer Account Manager noted on the invoice. Sincerely, Electronic Invoice Distribution Group ${EMAIL_ENTITY_NAME}</xapi:message>
    </xapi:email>
    </xapi:delivery>
    - <xapi:document output="${EMAIL_OU}INV_${EMAIL_FILEDATE}_${EMAIL_CUST_ACCTNO}.PDF" output-type="PDF" delivery="123">
    <xapi:template type="rtf" location="/BIBS1/bibs/FUT2/apps/apps_st/appl/XXBIBS/12.0.0/reports/US/Buyback_Template_temp.rtf" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Output of the bursting conc prog:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <BURS_REPORT>
    <REQUESTID>535438</REQUESTID>
    <PARENT_REQUESTID>535435</PARENT_REQUESTID>
    <REPORT_DESC>BIBS Network Buyback Invoice Report</REPORT_DESC>
    <OUTPUT_FILE>/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o535438.zip</OUTPUT_FILE>
    - <DOCUMENT_STATUS>
    <KEY />
    <OUTPUT_TYPE>PDF</OUTPUT_TYPE>
    <DELIVERY>email</DELIVERY>
    <OUTPUT>/usr/tmp/070212_090212922/BOI SG IMMINV_20120702_1707.PDF</OUTPUT>
    <STATUS>fail</STATUS>
    <LOG>Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..</LOG>
    </DOCUMENT_STATUS>
    </BURS_REPORT>
    I could not find even the pdf output in the path specified as above.
    Please suggest...!!!

  • Java with xml please help me :(

    Hi,
    I need to design a Jva GUI interface where when an action is triggered the event will
    first look at some pattern(rules) defined in a XML file before been fired. I have no
    idea of how the communication is going to be established . I have never used xml in the past.
    Any help will be very very appreciated!
    Thank You

    Hello,
    Try to download Jaxp-1.1, U will get 3 JAR files - xalan.jar, crimson.jar and jaxp.jar.Set the classpath to this jar files. U will find the ZIP files in http://java.sun.com/xml/jaxp-1.1/docs/api, Iam not sure about the URl.Still need any help mail me to [email protected]
    Thanx

  • I need to reset my security questions but when I send an email to the rescue email it doesn't get to me its the wrong email. help?

    iTunes wont let me download any music and I have over $20 on my account. It says I need to answer my security questions but I don't know the answers. When I try to send an email to the rescue email, it doesn't work. It says the email starts with an "h" but none of my emails start with an "h". I also don't know how to edit the email. Someone please help!

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (111154)

  • Mail wont send emails - Help!

    Hello!
    Unable to send emails from my Mac (G5 OSX 10.5.8) using Mail.
    Dialogue box says "Verify that you have addressed this message correctly. Check your SMTP server settings in Mail Preferences and verify any advanced settings with your system administrator."
    Email addresses are fine (in use for years) and smtp address is good too.
    Receiving incoming emails without problem.
    Connection Doctor shows all is good for my 3 PoP accounts.
    Problems started on returning from overseas trip. Abroad I use a Mac Pro which I upgraded to snow leopard. I also use MobileMe. The Mac Pro had issues sending mails too - using connections which had worked faultlessly for years. Had to restart it to send emails waiting in Outbox.
    Any fixes or help for me?
    Thanks for any responses
    Cheers

    Is the problem that Mail will not send ANY emails or that you cannot Reply to some emails.
    If the former, look at your SMTP settings (not just the SMTP address) to ensure that your port number and authentication type are correct for your current ISP. Being abroad might have reset these.
    If the latter, look at the "Send To address" which Mail has infrequently corrupted since Panther.
    Sometimes if you Reply to an email sent from: <[email protected]>, Mail creates the corrupted address: "[email protected]><[email protected]" <[email protected]> which will not send successfully.

  • Reg: XML PUBLISHER HELP

    Hi all,
    I am building report using xml publisher. Problem i facing was ,
    1. I created the template in RTF and attached to data definition
    for eg: my rtf is
    sno item quantity price ( I created this field in table structure and mapped to xml data)
    Total Price ( this also i am getting from data definition)
    The below is sample constant sentence for my client and typed just below Total Price ( field i mentioned above)
    Inspected By Approved By
    1)
    ________________________________ 1)________________________________ Store Incharge : ______________________
    2)
    ________________________________ 2) ________________________________ Received : _______________________
    3)
    ________________________________ 3 ________________________________ Prepared By : _______________________
    NOTE : ABOVE MENTIONED LINES ARE CONSTANT ONE.
    2. When i ran the report, if my data definition return 5 lines means , i am getting PDF output Correctly in single page (1st page)
    3) If my data definition returns lines more than 8 lines means, I am getting PDF output with Table structure values with item, in 1 st page and Constant sentence in 2nd page of PDF
    4) If my data definition returns lines between 5 and 8 means, I am getting PDf output with table structure values with item and some of Constant sentence of my client in 1 st page and few of the constanst sentence in 2nd page.
    Actually my need
    Even if the data definitions exceeds more than 5 lines the constant sentence should be placed either in the first page or in the next page based on the no. of lines in the data definition.
    How to resolve this... any approach most welcome. Wat changes i have to make.

    Hi Shruti,
    You can start with the BI publisher page on OTN http://www.oracle.com/technology/products/xml-publisher/index.html.
    Check out the tutorials (Oracle by Example). There's lot of good information out there. Check out the BI publisher guide here:http://www.oracle.com/technology/products/xml-publisher/xmlpdocs.html
    Search the forum or post questions about any specific questions you may have about formatting numbers and dates.
    Hope this helps.
    Thanks!

  • XML Publisher Help

    Hi,
    We currently have a payslip report that has been developed using Oracle reports, but for this to run we have to change our NLS_LANG setting from UTF8 to WE8ISO8859P1.
    The problem with this is to apply patches Oracle have told us we need to have the NLS_LANG set to UTF8.
    As a result Oracle have said that:
    The only available workaround for generating PDF on a UTF8 character set instance is to install and utilize the XML Publisher product or upgrade to E-Business Suite to Release 12.
    We don't have any plans to upgrade to Release 12, so I am looking to use XML Publisher. I have a couple of questions:
    Is this an add-on?
    Where is the best place to obtain navigation guides and tutorials to teach myself this?
    I have had a look at some of the pre-defined templates already and I am not sure how to create my own rtf file so that my required fields are passed to the template.
    Any help would be greatly appreciated
    Many Thanks
    Martin

    Hi Shruti,
    You can start with the BI publisher page on OTN http://www.oracle.com/technology/products/xml-publisher/index.html.
    Check out the tutorials (Oracle by Example). There's lot of good information out there. Check out the BI publisher guide here:http://www.oracle.com/technology/products/xml-publisher/xmlpdocs.html
    Search the forum or post questions about any specific questions you may have about formatting numbers and dates.
    Hope this helps.
    Thanks!

Maybe you are looking for

  • Creation of unloading points for STO's

    Dear Gurus, I have been requested to create unloading points (ABLAD) to be used in STO's. Can someone of you tell me what they are and where to create them? Thanks in advance! F

  • Process InfoPackage based on a condition in Process Chain

    Hi, I would like to include a Function Module in my Process Chain.Based on the output of the Function Module (example Flag - 'A','B','C') I would like to load data from Infopackage. Could you please suggest the best possible solution. Thanks, Nimai

  • Duplex printing for smartform

    Hi, Has anyone worked on Duplex printing for smartform? If yes, please tell me the procedure/steps that need to be taken for the same. Thanks Regards

  • Open the word file on the click of Link

    Hello, I have a requirement to open the word file on the click of LinkToUrl. Could anyone please explain the steps of doing that? Regards, Jyotsna

  • Como redireccionar pagina de ordenador a movil EN HTML

    cuando se exporta la se incluye todo en una sola carpta. pero el celular no me abre el diseño para movil me siguie abriendo el par ordenador.