sendToURL flash to coldfusion

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default sendToURL flash to coldfusion

    here is an easy one.
    I have an XML file I want to send to a basic coldfusion mailer.
    I am simply using sendToURL and attaching the data as below.
    (how do I tell the coldfusion mailer to receive the XML data and then add it
    to the forwarded email?
    I can get the mailer to work fine, but I cant get it to add the XML data to
    the email.
    Thanks for any help.

    SWF SENDING THE XML DATA INSIDE OF AN URL REQUEST TO THE COLDFUSION MAILER:
    var myRequest:URLRequest = new URLRequest("forwarder.cfm");
    myRequest.data = cardXML;
    sendToURL(myRequest);

    COLDFUSION MAILER THAT WILL FORWARD THE RECEIVED XML TO MY EMAIL INBOX.
    <cfmail
    to = "xxxxx"
    from="xxxxx"
    subject = "business card ORDER LODGED"
    username = "xxx"
    password = "xxx"
    server = "xxxxxx"
    port = "25"
    mailerid = "headerid"
    timeout = "20">
    this is the body area of the forwarded email.
    </cfmail>

    phil1943 Guest

  2. Similar Questions and Discussions

    1. Flash and ColdFusion
      Every article I read seems to say you need Flash MX 2004 Professional to connect with ColdFusion. I was wondering if I could just use Flash 8 and...
    2. ColdFusion to Flash
      Hello! I'm trying to do something simple, passing a variable from ColdFusion to Flash. This is my code: COLD FUSION SIDE: <cfquery...
    3. flash & coldfusion
      hi guys, i'm not sure what flash integration is but anyway we require the following and i feel that flash integration may help. we need to do the...
    4. Coldfusion and Flash
      I have a sitation here I hope someone can help me with. This is what I have for the first page. A link that passes the following <a...
    5. Flash to Coldfusion?
      How do I simply transfer info to Coldfusion on a button press.....? on(press){ }
  3. #2

    Default Re: posting xml to CFMAIL

    Hi,

    Are you getting the xml dump when you put it under the <cfdump> tag?...
    Daverms Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139