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!

Can you see what I can't see in this code.? 3

Status
Not open for further replies.

TonyU

Technical User
Feb 14, 2001
1,317
US
[tt]

here's a part of an HTML formatted email I'm trying to generate but my email part is not working.

I have a user submit this form and I want their email address to be displayed as an email link (mailto:request.form("email")) but it's not working


HTML = HTML & &quot;<TR><TD>&quot;
HTML = HTML & &quot;<br>&quot;
HTML = HTML & &quot; &quot; & &quot;<font color='##003399'>&quot; & &quot;Name: &quot; & &quot; &quot; & Request.form(&quot;Name&quot;) & &quot;<BR>&quot; & &quot; &quot; & &quot;Email: &quot; & &quot;<a href=mailto:&quot; & Request.form(&quot;email&quot;) & &quot;</a>&quot; & &quot;<br>&quot; & &quot; &quot; & &quot;Phone: &quot; & &quot; &quot; & Request.form(&quot;Phone&quot;) & &quot;<BR>&quot; & &quot; &quot; & &quot;Company: &quot; & &quot; &quot; & Request.form(&quot;company&quot;) & &quot;<BR>&quot; & &quot; &quot; & &quot;Request: &quot; & &quot;<br>&quot; & &quot; &quot; & Request.form(&quot;message&quot;) & &quot;</font>&quot;
HTML = HTML & &quot;</FONT></TD></TR></TABLE><BR><BR>&quot;
HTML = HTML & &quot;<br>&quot;
HTML = HTML & &quot;<br>&quot;




Delete * from brain Where MaxLevel = &quot;Full&quot; and reaction = &quot;Slow&quot; order by StartOver
 
there doesn't seem to be anything to click for the link
&quot;<a href=mailto:&quot; & Request.form(&quot;email&quot;) & &quot;</a>&quot;

to something as
&quot;<a href=mailto:'&quot; & Request.form(&quot;email&quot;) & &quot;'>Click</a>&quot;

_________________________________________________________
$str = &quot;sleep is good for you. sleep gives you the energy you need to function&quot;;
$Nstr = ereg_replace(&quot;sleep&quot;,&quot;coffee&quot;,$str); echo $Nstr;

onpnt2.gif
[/sub]
 
&quot;<a href=[red]'[/red]mailto:&quot; & Request.form(&quot;email&quot;) & [red]&quot;'>EMail</a>[/red]&quot;

-pete
 
blast!!!!!!!! Here I thought I beat you and my quotes are wrong. [lol]

_________________________________________________________
$str = &quot;sleep is good for you. sleep gives you the energy you need to function&quot;;
$Nstr = ereg_replace(&quot;sleep&quot;,&quot;coffee&quot;,$str); echo $Nstr;

onpnt2.gif
[/sub]
 
&quot;<a href=mailto:&quot; & Request.form(&quot;email&quot;) & &quot;</a>&quot;

SHould read

&quot;<a href=mailto:&quot; & Request.form(&quot;email&quot;) & &quot;>Send Mail</a>&quot;

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
 
[lol]

anyone else care to post it too

_________________________________________________________
$str = &quot;sleep is good for you. sleep gives you the energy you need to function&quot;;
$Nstr = ereg_replace(&quot;sleep&quot;,&quot;coffee&quot;,$str); echo $Nstr;

onpnt2.gif
[/sub]
 
Wow - I didn't think it took me that long!!!!
How did everyone get so many posts in? There were 0 when I started....

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rich Cook
 
[tt]Alright, stop the
swords.gif
everybody get's
star.gif
's

[yoda]



Delete * from brain Where MaxLevel = &quot;Full&quot; and reaction = &quot;Slow&quot; order by StartOver
 
I feel so left out :)


[yoda] Hijack your thread we have...

-Tarwn
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top