Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Saving a fillable form and sending it via email
Message
 
 
À
24/06/2005 22:25:47
Information générale
Forum:
Internet
Catégorie:
Courrier électronique
Divers
Thread ID:
01026487
Message ID:
01026512
Vues:
16
Paul,

With some Javascript in an HTML page you can gather up the input fields and trigger a mailto: link. The HTML page can be distributed everywhere and they'd just have to open their local copy in a browser.
<html>
<body>

<script language="javascript">
function SendEmail()
{
var lcEmailBody;
lcEmailBody = "field1-" +window.document.forms[0].field1.value;
window.open( "mailto:davidfrankenbach@att.net?subject=FormResult&body=" + lcEmailBody );
}
</script>

<form>
<input id="field1" type="text" />
<input id="submit" type="submit" value="Email Paul" onclick="SendEmail();" />
</form>

</body>
</html>
>Hoping someone can help me with this. I'm looking at creating a fillable form that our clients can fill out, and when they click on a button, the data (or the form itself) is sent to our email address. The form will need to be available to our clients offline as we do not have a website.
>
>I would like something that is either cheap or (preferrably) free. I have looked @ Adobe and tried verion 5.0, but of course when users are using reader version they cannot email data to me. I need to make this as easy as possilbe for our clients. I've used Word 97 for it but our clients need to have word or another compatible processor to read it. I've thought about HTML but not sure how to get this to work without a website.
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform