I am trying to set up one of my web forms to email a confirmation to one of the fields in my form. I am not sure if this is possible or not, but I know that I have filled out many forms before and received an email confirmation.
Currently I am using a .cfm file to email myself whenever a form is submitted, but I was wondering if there is a way to email the person submitting the form as well. (assuming they enter their email address in the form). If any one has any experience with this and possible some feedback, I would appreciate any help. As well, I was wondering how I could send the information to a number of recipients. Right now I am only able to send it to a (To
field and a (cc
field. Here is the .cfm file I am using.
<cfmail from="admin@remoteclear.com" to="david.sergile@xxx.com;sergile@xxx.com"subject="SEB Monitoring Request Form"
server="63.79.257.23" >
Request Type: #Traffic#
Confirmation email: #confirmemail#
Branch Manager Name: #managerName#
</cfmail>
- David
Currently I am using a .cfm file to email myself whenever a form is submitted, but I was wondering if there is a way to email the person submitting the form as well. (assuming they enter their email address in the form). If any one has any experience with this and possible some feedback, I would appreciate any help. As well, I was wondering how I could send the information to a number of recipients. Right now I am only able to send it to a (To


<cfmail from="admin@remoteclear.com" to="david.sergile@xxx.com;sergile@xxx.com"subject="SEB Monitoring Request Form"
server="63.79.257.23" >
Request Type: #Traffic#
Confirmation email: #confirmemail#
Branch Manager Name: #managerName#
</cfmail>
- David