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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie need help with email 1

Status
Not open for further replies.

cpod

Programmer
Joined
Sep 8, 2001
Messages
4
Location
US
Just sent my first email with coldfusion and the CFmail tag. Now, can someone tell me how to add a URL link to the body of an email?

Thank for any help.

 
hi cpod ... why not register!?

If the recipients are using Outlook or Eudora, or a web based mail client they can read HTML emails. Otherwise, they will actually see the code and tags.

If you want to try the HTML route, the key is an attribute called TYPE:
<cfmail
to=&quot;asd@asdasd.com&quot;
from=&quot;orders@orderit.com&quot;
subject=&quot;Your new order!&quot;
type=&quot;html&quot;>
<a href=&quot;</cfmail>

Or just output directly in the email.
 
It works!! Thank you.

(I thought I did register.....)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top