25
| <![CDATA[<script type="text/javascript">
document.getElementById('contatoForm').addEventListener('submit', function () {
var nome = this.querySelector('input[name=nome]'), nome = nome.value;
var email = this.querySelector('input[name=email]'), email = email.value;
var motivo = this.querySelector('input[name=motivo]'), motivo = motivo.value;
var texto = 'Olá destinatário, \nMeu nome é '+ nome +' e meu email é '+ email+
'o motivo é '+motivo;
this.querySelector('input[name=Body]').setAttribute('value', texto);
});
</script>]]>
|