mailto: Cutter
Das ist der Beispiel Code für einen mailto: Cutter
|
Script: |
<script type="text/javascript">
<!-- place this in your header...
function create_mail(naam, domain, tld, subject, mailtext, label) {
var mail = "";
mail += '<a href="'
mail += 'ma';
mail += 'il';
mail += 'to:';
mail += naam;
mail += '@';
mail += domain;
mail += '.';
mail += tld;
mail += '?subject=' + subject;
mail += '&body=' + mailtext +
'">';
mail += label + '<';
mail += '/a>';
document.write(mail);
}
// -->
</script>
<script type="text/javascript">
<!-- ... and this part in the body
create_mail("you", "mail", "com",
"The mail subject", "Your message...", "the
mail link");
-->
</script>
|
|