Tutorials Infos - Anleitungen - Hilfe - Dreamcodes
 

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 += '&#64;';
    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>

 
ID: 1003
eingestellt am: 09.06.2006
Autor: Na
Status zum lesen: Gast
gelesen: 6775
Webseite: www.dreamcodes.com
[Drucken]