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

mailto:

Status
Not open for further replies.

NikP

Programmer
Mar 1, 2001
18
GB
Hi Im trying to send an email from a Page..using the

mailto: in <HTML> I need to include spaces in my email address that the email is being sent to..I have tried to use &quot;&nbsp&quot; however although this displays a space the email address is incorrect as it is READ without spaces can anyone help PLEASE....thanks

Im avoiding using CDONTS because I am using frames etc and its a mission trying to use frames and trying to send email from one frame with subject headings relating to variabkes from another frame...

Nik
 
try mailto:email%32address
where %32 is where you want the space
 
This works if you are trying to use Outlook to do your emailing.

<p align=&quot;right&quot;>
<font size=&quot;2&quot;><img height=&quot;1&quot; alt src=&quot;images/spacer.gif&quot; width=&quot;1&quot; border=&quot;0&quot;><font color=&quot;#FFFF00&quot;>Questions
and \or Comments click image
</font></font><a href=&quot;jr_clown@yahoo.com? Subject=Hey Clown nice site you have there.&quot; style=&quot;float: right&quot;><img border=&quot;0&quot; src=&quot;question.gif&quot; width=&quot;40&quot; height=&quot;40&quot;></a>

If you are trying to use the server. It a different animal my friend.
Hope this helps.




QUOTE OF THE DAY
Not to know if bad; not to wish to know is worse.
<%
Jr Clown
%>
 
Ack..

Should be %20 not %32 :)
Code:
<A HREF=&quot;mailto:my%20address@hotmail.com&quot;>my%20address@hotmail.com</A>

Will look like my address and should show up in the browser as &quot;my address@hotmail.com&quot;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top