Then I suggest you use a form and server-side script to send the e-mail with
ASP/CDONTS
'example
set mail = server.createobject("cdonts.newmail")
mail.to = "email@s..."
mail.from = "email@s..."
mail.subject = "the subject"
mail.body = "The mail content"
mail.send
set mail = nothing
Greetz,
Arjan
-----Original Message-----
From: Martyn Luck [mailto:martyn.luck@p...]
Sent: dinsdag 9 oktober 2001 9:12
To: HTML Code Clinic
Subject: [html_code_clinic] RE: Problem with mailto tag
Importance: High
Thanks for the help but the output is still the same..........
Regards
Martyn Luck
-----Original Message-----
From: Arjan Bosboom [mailto:Arjan.Bosboom@d...]
Sent: 08 October 2001 13:10
To: HTML Code Clinic
Subject: [html_code_clinic] RE: Problem with mailto tag
Here is your solution:
<a href="mailto:someone@d...&subject=New QRF for
Blob&Body=http%3A%2F%2Flocalhost%2Fqrf%2Fview%2Easp%3FCustomer%3Dblob%26QRFN
UM%3DQRF21">Send
Email</a>
Greetz,
Arjan Bosboom
-----Original Message-----
From: martyn Luck [mailto:martyn.luck@p...]
Sent: maandag 8 oktober 2001 15:02
To: HTML Code Clinic
Subject: [html_code_clinic] Problem with mailto tag
Hi all
Here's my problem:
<a href="mailto:someone@d...&subject=New QRF for
Blob&Body=http://localhost/qrf/view.asp?Customer=blob&QRFNUM=QRF21">Send
Email</a>
when using this link on a page when outlook opens, the to section is ok,
the subject is ok but when it comes to the body section all that is
diplayed is as follows
http://localhost/qrf/view.asp
the ?customer=blob&QRFNUM=QRF21 is dropped off the link.
Thanks
Martyn