1.1.0 • Published 6 years ago

parse-server-elasticemail v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

parse-server-elasticemail

Allows your Parse Server app to send template-based emails through ElasticEmail.

Installation

npm install --save parse-server-elasticemail

Adapter configuration

var server = ParseServer({
	// Is to verify the users 
	verifyUserEmails: true 
	emailAdapter: {
		module : 'parse-server-elasticemail',
		options : {
			// Your API KEY (Required)
			apiKey: '-- API --',
			// The templates
			templates : {
				// Only the name
				passwordResetEmail : 'reset_email',
				// A object
				verificationEmail : {
					// Name template (Required)
					name : 'verification_email',
					// Subject
					subject : 'Hey do a click!',
					// Form
					fromAddress : 'my@coolEmail.com'
				},
				// And more elements
				customEmailAlert : 'Othe alert'
			}
		}
	}
});
1.1.0

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago