What it can be used for?
register_form plugin can be used to manage registrations. When an user fills out a form you will receive an email with the entered information. Optionally a confirmation email will be sent back.
Look in the example to see what the syntax is. You can use the syntax builder to quickly insert the right syntax.
What is required?
In general_config.py you must specify a SMTP server:
DEFAULT_EMAIL = 'amix@amix.dk' SMTP_SERVER = 'localhost' SMTP_AUTH_REQUIRED = False #Is authorization required? #SMTP_USER = '' #SMTP_PASSWORD = ''
Caching must also be enabled in general_config.py:
USE_CACHING = True BUILD_CACHE_ON_START = True
That's it!
Example syntax
[ register_form=Workshop, show_as=Fill in, mailto=amix@amix.dk] Full name=input Address=text Country=input E-mail=input Phone=input ConfirmMail=[ Hi %(Full name)s We have registered you as a participant. Thank you for your registration. You have given the following information: Full name: %(Full name)s Address: %(Address)s Country: %(Country)s Phone: %(Phone)s ] [/ register_form]
