Email from HTMLexe

Hi Support,

is there any way I can get a user to send an email from out of a compiled HTMLexe eBook?

I would like to provide a facility whereby a client completes a piece of work and the results get sent automatically to an email address that he has previously input.

I have this working on a web-based application, but am now thinking is it possible from an eBook.

Regards,

Charco

It’s possible if you use a simple HTML form whose action points to a PHP script on your website. This PHP script will receive the contents of the form and then can process it (for instance, sends an email directly to you).

For instance, this HTML code:

<form method="post" name="contact_form" action="http://yourserver.com/contact-form-handler.php">
    Your Name:
    <input type="text" name="name">
    Email Address:
    <input type="text" name="email">
    Message:
    <textarea name="message"></textarea>
    <input type="submit" value="Submit">
</form>