Jump to content
Fórum Script Brasil
  • 0

Ajuda com função mailto


Britto

Question

Boa noite a todos!

Preciso de uma ajuda no seguinte:

Tenho uma página html, e preciso que ao clicar em um link qualquer, seja feita a cópia desta página e este conteudo seja disponibilizado no e-mail.

O código abaixo faz isto, porém não aceita a formatação, neste caso é o mais importante, as quebras de linha.

Desde já agradeço e peço desculpas pela péssima qualidade do código, pois é o primeiro que faço.

<html>
<head>
<title>Teste</title>
&lt;script language="javascript" type="text/javascript"> 
function mailpage() 
{
    window.clipboardData.clearData();
    this.document.execCommand("SelectAll", true);
    var x = this.document.execCommand("Copy", true);
        this.document.execCommand("UnSelect", true);
        
    var copied  = window.clipboardData.getData('Text', x);

        mail_str = "mailto:email@dominio.com.br?subject=Erro PORTAL"; 
        mail_str += "&body=Erro Portal."; 
        mail_str +="%0D%0A"; 
        mail_str +="%0D%0A"; 
        mail_str += copied;
    location.href = mail_str; 
} 
</script>
</head>
<body>
<form name="form1"> 
<table>
<tr>
<td>ESTE TEXTO É SÓ DE TESTE</td>
</tr><br>
<tr>
<td>PARA VER SE O SCRIPT VAI FUNCIONAR COM O CTRL + A </td>
</tr><br>
</table>
</form>
<a href="java script:mailpage();">Enviar página</a>

</body>
</html>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...