
Maar 'k ga die SimpleForm proberen. Begrijp ik je goed dat die onafhankelijk werkt van zowel de cmsmailer module als ook niet van welk mail-protocol je gebruikt?
Moderator: velden
Dat heb ik effe gedaan, en die kwam inderdaad wél aan... .Test dus eens het FormBuilder formulier en vul daar - als bezoeker - een bestaand email-adres is van het website domein. Als dat wél aankomt dan weet je dat dus.
Heb em dus naar die map ge-upload, maar hij verschijnt niet in de back-end vd admin (via Uitbreidingen --> Tags)...Enkel de plug-in tag in de map assets/plugins/ plaatsen en de help tekst lezen
Installation guide:
1. Copy the file function.simpleform.php to the (assets/)plugins folder of the CMSMS website
2. Create a stylesheet and attach it to the page template. For help go to the CMSMS docs website »
The content of the stylesheet is in the next tab "Sample stylesheet"
3. Read the plugins help text in the Admin panel, go to Extentions >> Tags and click on the name simpleform
4. Just insert the tag with the required (and optional) parameters into the page or template. Some examples are:
Required:
{simpleform sendto='name@domain.com'}
Optional:
{simpleform sendto='name@domain.com,name@otherdomain.com'}
{simpleform sendto='name@domain.com' lang='nl'}
{simpleform sendto='name@domain.com' captcha='true'}
{simpleform sendto='name@domain.com' captcha='true' lang='de'}
{simpleform sendto='name@domain.com' captcha='true' lang='nl' subject='Informatie aanvraag'}
Multilingual websites, where $lang is a two character language code:
{simpleform sendto='name@domain.com' lang=$lang}
Parameters:
sendto (required) - Comma seperated list of email addresses that the message will be sent to.
captcha - Use Captcha response test (Captcha module must be installed). Default value is false.
lang - Change the language of the form and email. Available are: en(default), de, fr, hi, pt, nl and no.
name - Gives the name field a default value, which can be overwritten by the website visitor.
email - Gives the email field a default value, which can be overwritten by the website visitor.
subject - Gives the subject field a default value, which can be overwritten by the website visitor.
message - Gives the message field a default value, which can be overwritten by the website visitor.
Code: Select all
[[* +++++ Multiple Used Values +++++ *]]
[[assign var='label_width' value='150']]
[[assign var='field_width' value='300']]
[[assign var='field_border' value='border: #ccc solid 2px;']]
[[assign var='field_border_hover' value='border: #666 solid 2px;']]
[[capture assign='rounded_corners']]border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;[[/capture]]
[[* +++++ Stylesheet +++++ *]]
.simpleform div {
margin: 0 0 5px 0;
}
.simpleform div div {
margin: 0 0 0 [[$label_width]]px;
padding: 0 0 5px 0;
}
.simpleform input[type="email"],
.simpleform input[type="text"],
.simpleform textarea {
width: [[$field_width]]px;
margin: 0 5px 0 0;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 13px;
[[$field_border]]
[[$rounded_corners]]
}
.simpleform textarea {
height: 100px;
}
.simpleform input[type="email"]:hover,
.simpleform input[type="text"]:hover,
.simpleform textarea:hover {
[[$field_border_hover]]
cursor: default;
}
.simpleform input[type="submit"] {
width: [[$field_width+4]]px;
margin: 10px 0 0 0;
[[$field_border]]
[[$rounded_corners]]
cursor: pointer;
}
.simpleform input[type="submit"]:hover {
[[$field_border_hover]]
}
.simpleform label {
width: [[$label_width]]px;
float: left;
}
.simpleform_text_error {
color: #f00;
font-weight: bold;
}
.captchapict {
width: [[$field_width]]px;
[[$field_border]]
[[$rounded_corners]]
}
.simpleform_website,
.simpleform_website * {
display: none !important;
}
Code: Select all
.simpleform_website,
.simpleform_website * {
display: none !important;
}