Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
phil1943 #1
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
-
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... -
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... -
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... -
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... -
Flash to Coldfusion?
How do I simply transfer info to Coldfusion on a button press.....? on(press){ } -
Daverms #2
Re: posting xml to CFMAIL
Hi,
Are you getting the xml dump when you put it under the <cfdump> tag?...
Daverms Guest



Reply With Quote

