| View previous topic :: View next topic |
| Author |
Message |
damian
Joined: 18 Jan 2007 Posts: 2
|
Posted: Jan 18, 2007 5:32 pm Post subject: how to use email_required option |
|
|
Hello - I'm trying to make sure a visitor has to supply an email address with their upload.
I set the value for requiring an email to 1:
| Code: |
# Email field required (optional)
# Force users to enter their email address. Upload notification to that email will be sent.
# Leave empty to disable, set to 1 to enable
email_required => '1',
|
But how do I implement that in the form?
Thanks! |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2106 Location: UFO Lab
|
Posted: Jan 19, 2007 6:38 am Post subject: |
|
|
The same like in demo form: after turning on email in config add text input to your form:
| Code: | | <input type="text" name="email_notification"> |
|
|
| Back to top |
|
 |
|