E
Eli the Iceman
Hi,
I would like to know if it is possible to force a queried record output of
an email to automatically add the value of the email address to the MailTo:?
Here is what I did,
Do While Not objRS.EOF
Response.Write "<TD>" & objRS("Analyst") & "</TD>"
Response.Write "<TD><B><font color=#000080><a href=mailto:>" &
objRS("Email") & "</B></font></TD>"
objRS.MoveNext
Loop
This code returns me the values of analysts and their associated email,
which is stored in the connected DB, but my problem is that although the
mailto: is working with a created link, once clicked, then send to is empty
in my Outlook. In other words, it does not capture the email address. What
I would like to do is to include the email in the send to, so people will not
have to type it in.
Thanks,
I would like to know if it is possible to force a queried record output of
an email to automatically add the value of the email address to the MailTo:?
Here is what I did,
Do While Not objRS.EOF
Response.Write "<TD>" & objRS("Analyst") & "</TD>"
Response.Write "<TD><B><font color=#000080><a href=mailto:>" &
objRS("Email") & "</B></font></TD>"
objRS.MoveNext
Loop
This code returns me the values of analysts and their associated email,
which is stored in the connected DB, but my problem is that although the
mailto: is working with a created link, once clicked, then send to is empty
in my Outlook. In other words, it does not capture the email address. What
I would like to do is to include the email in the send to, so people will not
have to type it in.
Thanks,