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

CFPOP and from field

Status
Not open for further replies.

ellasso

Programmer
Oct 12, 2001
14
CA
Hi, I'm trying to use CFPOP but in the from field, I always only have the name of the person for example : &quot;John Doe&quot; instead of &quot;John Doe <john@doe.com>&quot;

Do you know if there is a way to have the adresse to ?

Thx
 
if you're outputting the information to a web page, the email address is there between the < and > signs, but the browser is interpreting it as an HTML tag. I usually use a replace statement like the following, to replace the < and > characters with [ and ]:

#replace(replace(FROM, &quot;<&quot;, &quot;[&quot;), &quot;>&quot;, &quot;]&quot;)#

-- Paul
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top