Skip to content

tenshiemi/meteor-contact-form

 
 

Repository files navigation

Simple contact form for Meteor applications

Add a simple mailable contact form to your Web application. This is modified from Ruslan Bredikhin's contact form and available on Atmosphere

Changes:

  • Added custom subject
  • Removed Subject form fields

Installation

meteor add scalloped:contact-form

Usage

Configure on the server:

Meteor.settings.contactForm = {
  emailTo: 'someone@somewhere.com',
  emailSubject: function (params) {
    'Message from ' + params.name + ' via contact form'
  }
};
...

Display on the client:

{{>contactForm}}
...

License

The MIT License

Copyright (c) 2015 Emily Chen

About

Simple contact form for Meteor applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 82.1%
  • HTML 11.5%
  • CSS 6.4%