Link to home
Start Free TrialLog in
Avatar of LelloLello
LelloLello

asked on

cfmail in coldfusion....

My form is working and all the entry are insert it into the Database Table.

I have a CFMAIL function usually it's working but since yesterday i'm not receiving any confirmaion by email... what may cause this? i'm missing anything in my cfmail like smtp??
 
                        <cfmail from="webmaster@adc.ca" 
						subject="Online Registration Form for #strBadgeName#" 
						to="xxxx.xxx@adc.ca"
                        bcc="xxxx@adc.ca" type="html">			
					------------------------------------------------------------
					<strong>Member ID: </strong>#Form.ID_Number#<br>
                    <strong>Name: </strong>#FORM.strBadgeName#<BR>
                    <strong>Telephone: </strong>#FORM.strPhone#<BR>
                    <strong>Email: </strong>#FORM.strEmail#<BR>
					------------------------------------------------------------<br>
					<strong>Registration Information: </strong>#Form.new_member_type#<br>
				  <cfif intOption neq "">
						<cfif intOption eq 1180>Fellows:
						<cfelseif intOption eq 1000>Associate 5 years and over:
  						<cfelseif intOption eq 350>Associate less than 5 years:
						<cfelseif intOption eq 350>Affiliate:
						<cfelseif intOption eq 1195>Non-Members:</cfif> #DollarFormat(intOption)#
					</cfif>
		
					------------------------------------------------------------<br>
					<strong>Total: </strong> #DollarFormat(intTotal)#<br>
										</cfif>					  
				


                 
					------------------------------------------------------------
					
</cfmail>					

Open in new window

Avatar of LelloLello
LelloLello

ASKER

the server tag was missing..server="xxx.xxxx.ca"

is there way i can have an email for my previous registratoin.... ?
I mean i was missing the server =”xxx.xxxx.ca” line in my CFMAIL tag for webmaster@adc.ca.

Do you think I will be able to have back those email ... or view the mail queue to determine if any mail is stuck in the queue?
If i'm missing a server can a email be generated or where the email go sit on the server???
ASKER CERTIFIED SOLUTION
Avatar of _agx_
_agx_
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you Agx !!