Howdy y'all!
I finally have my own email server (http:/ and I'm modifying some of CFML templates to send email upon processing submitted forms.
It works very nicely, except, the text on body of sent message is indented as it appears on my code.
You see, I indent my code. My <cfmail ...> command is about 4 tabs in and the body is about 5 tabs. The message I receive shows these tabs as part of the content.
How can I prevent this (other than left justifying my code)?
Thank you all in advance;
josel
PS: Here is the snippet of code
<cfmail
to="#TheUser.UserEmail#"
from="#application.MyEmail#"
subject="Your submitted help desk!"
server="192.168.0.50">
Thank you for visiting !!!
Your help desk entry will be addressed promptly.
<cfif "#Notifyme#" is "Y">
You have chosen to be notified of any changes or
activities in regard to your help desk entry.
Additional messages will be sent as our technicians
address your issues and/or if additional
information is required.
We look forward to providing you prompt service
and solutions to all your computer needs. Let
us know if we can be of further assistance!
Thank you!
<cfelse>
You have chosen to not be notified of any changes
or activities in regard to your help desk entry.
Your having opted to not receive these notices,
means that you will not be made aware of progress
made nor any other inquiries which may help resolve
your needs sooner.
Please concider allowing using this feature thus
improving the true value of our help desk system!
Thank you!
</cfif>
</cfmail>
KNOWLEDGE: Something you can give away enlessly and gain more of it in the process! - Jose Lerebours
I finally have my own email server (http:/ and I'm modifying some of CFML templates to send email upon processing submitted forms.
It works very nicely, except, the text on body of sent message is indented as it appears on my code.
You see, I indent my code. My <cfmail ...> command is about 4 tabs in and the body is about 5 tabs. The message I receive shows these tabs as part of the content.
How can I prevent this (other than left justifying my code)?
Thank you all in advance;
josel
PS: Here is the snippet of code
<cfmail
to="#TheUser.UserEmail#"
from="#application.MyEmail#"
subject="Your submitted help desk!"
server="192.168.0.50">
Thank you for visiting !!!
Your help desk entry will be addressed promptly.
<cfif "#Notifyme#" is "Y">
You have chosen to be notified of any changes or
activities in regard to your help desk entry.
Additional messages will be sent as our technicians
address your issues and/or if additional
information is required.
We look forward to providing you prompt service
and solutions to all your computer needs. Let
us know if we can be of further assistance!
Thank you!
<cfelse>
You have chosen to not be notified of any changes
or activities in regard to your help desk entry.
Your having opted to not receive these notices,
means that you will not be made aware of progress
made nor any other inquiries which may help resolve
your needs sooner.
Please concider allowing using this feature thus
improving the true value of our help desk system!
Thank you!
</cfif>
</cfmail>
KNOWLEDGE: Something you can give away enlessly and gain more of it in the process! - Jose Lerebours