I’m trying to send mail through coldfusion
from a flash form.I’m having no problems sending the Prams to and from flashand coldfusion, but coldfusion is not sending the mail?
have the smtp set up correct in the coldfusion admin, but still no go? anyone have any ideas??
<CFPARAM NAME=“FLASH.name” TYPE=“string”>
<CFPARAM NAME=“FLASH.company” TYPE=“string”>
<CFPARAM NAME=“FLASH.phone” TYPE=“string”>
<CFPARAM NAME=“FLASH.email” TYPE=“string”>
<CFPARAM NAME=“FLASH.message” TYPE=“string”>
<!–Whitespaces–>
<CFPROCESSINGDIRECTIVE SUPPRESSWHITESPACE=“No”>
<CFSET RECIVING = “email address here”>
<!–Send mail, based on flash input–>
<CFMAIL
TO="#RECIVING#"
SUBJECT=“engine test”
FROM="#FLASH.email#"
>
The following customer inquiry was posted to web site:
Name:
#FLASH.name#
Company:
#FLASH.company#
Phone Number:
#FLASH.phone#
Message:
#FLASH.message#
</CFMAIL>
</CFPROCESSINGDIRECTIVE>
<CFSET FLASH.result = RECIVING>
flash is reciving the result no problem in the trace()
???