Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

email output

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
Is it possible on my <cfmail> for emailing someone info to make a word bold???


For example if I mail out someone an important number:

Here is your number 12.



If I put in my <cfmail> ....... Here is your number <strong>12</strong> .....</cfmail>


sends this output to my email: Here is your number <strong>12</strong>

Is there a way to do this???


 
What happens when you try it? Calista :-X
Jedi Knight,
Champion of the Force
 
The tags show up in the email message such as [tt]<strong>12</strong>[/tt].

Is there anyway to make it show up as 12 bold in the email message???
 
Do you have &quot;Type=HTML&quot; in your CFMAIL tag?

<CFMAIL TO=&quot;#Receipient# <#GetAddress.PersonEmail#>&quot;
FROM=&quot;Buzz&quot;
SUBJECT=&quot;#ThreadName#&quot;
TYPE=&quot;HTML&quot;>
<CFMAILPARAM NAME=&quot;Date&quot; VALUE=&quot;#dateString#&quot;>
#Sender# has posted a new message in the #GetThread.ThreadName# thread.<BR>
Click on this link to view:<BR>
<A HREF=&quot;#Application.RootPath#discussion/ViewThread.cfm?ThreadID=#Form.ThreadID#&Forum=#Forum#&quot;>#Application.RootPath#discussion/ViewThread.cfm?ThreadID=#Form.ThreadID#</A>
</CFMAIL> Calista :-X
Jedi Knight,
Champion of the Force
 
So in my example:

<cfmail> ....... Here is your number <strong>12</strong> .....</cfmail>


Where would TYPE=&quot;HTML&quot; go??
 
<CFMAIL TO=&quot;#Receipient#&quot;
FROM=&quot;#Sender#&quot;
SUBJECT=&quot;Your Number&quot;
TYPE=&quot;HTML&quot;>

Your number is <strong>12</strong>

</CFMAIL> Calista :-X
Jedi Knight,
Champion of the Force
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top