This is a contact form based on https://github.com/bredikhin/meteor-contact-form
The current implementation integrates with https://github.com/appshore/Meteor-reCAPTCHA/ that utilizes Google reCaptcha service.
Changes:
- Added appshore recaptcha
- Changed the status message to the top of the form.
- Changed the way emailTo needs to be specified.
meteor add branco:contact-form
All it takes is two simple steps:
###1. Sign up and get the public and secret key from Google reCaptcha service: https://www.google.com/recaptcha/intro/index.html
###2. Configure on the server: Setup your settings.json (at the root of your project)
{
"public":
{
"contactForm":
{
"emailTo":"someone@abcd.com"
},
"recaptcha":
{
"publickey":"<public_key_from_google>"
},
},
"private":
{
"recaptcha":
{
"secretKey":"<secret_key_from_google>"
},
}
}
...
Display on the client:
{{>contactForm }}
...
##Custom Schema with i18n
You can override the default Schema by using
- In your template:
<template name="myform">
{{contactForm schema=contactSchema}}
</template>
-Define a helper to provide the custom schema
Schema.contactForm = new SimpleSchema({
name: {
type: String,
autoform: {
type: "text"
},
i18nLabel: '<Tapi18n.key>',
max: 64
},
...
});
Template.myform.helpers({
"contactSchema": function()
{
return Schema.contactForm;
}
}
By specifying the i18nLabel ( which corresponds to a TAPi18n key that you should have previously defined) it will reactively change according to the language set.
- Custom Schema injection - Allows specification of a given schema to be used for the contact form
- i18n integration - Enabling multi-lingual contact form.
Copyright (c) 2015 Junio Branco