Submitting forms VIA email

K

Kirby

Right now my form sends all of the field names an the information
entered into the form. How do I only send the field names of the
fields that have been filled out in a form?

In the example below the Type and Video fields were filled in the rest
of the fields were not


· TYPE: ATTORNEY DISCIPLINE BOARD = L
· VIDEO: NO
· WITNESS_1:
· SCHED_STRT_WITNESS_1:
· ACT_START_WITNESS_1:
· END_WITNESS_1:
· READ_SIGN_WITNESS_1:

So I would want to only send

· TYPE: ATTORNEY DISCIPLINE BOARD = L
· VIDEO: NO



Thanks
 
R

Ronx

You write your own form handler, using whatever technology (asp,
asp.net, php, etc.) your host supports, that will ignore empty fields.
The FrontPage extensions form handler will send every field, empty or
otherwise.
 
Top