Trivial inconsistency in the docs fixed.

This commit is contained in:
freiit
2015-06-16 11:47:30 +02:00
parent 800ec27264
commit 2ce81712d6

View File

@@ -121,14 +121,14 @@ Override fields of the object by assigning to them:
the application (eg: `awesome.meteor.com`). the application (eg: `awesome.meteor.com`).
- `headers`: An `Object` for custom email headers as described in - `headers`: An `Object` for custom email headers as described in
[`Email.send`](#email_send). [`Email.send`](#email_send).
- `resetPassword`: An `Object` with two fields: - `resetPassword`: An `Object` with the fields:
- `resetPassword.from`: A `Function` used to override the `from` address defined - `from`: A `Function` used to override the `from` address defined
by the `emailTemplates.from` field. by the `emailTemplates.from` field.
- `resetPassword.subject`: A `Function` that takes a user object and returns - `subject`: A `Function` that takes a user object and returns
a `String` for the subject line of a reset password email. a `String` for the subject line of a reset password email.
- `resetPassword.text`: A `Function` that takes a user object and a url, and - `text`: A `Function` that takes a user object and a url, and
returns the body text for a reset password email. returns the body text for a reset password email.
- `resetPassword.html`: An optional `Function` that takes a user object and a - `html`: An optional `Function` that takes a user object and a
url, and returns the body html for a reset password email. url, and returns the body html for a reset password email.
- `enrollAccount`: Same as `resetPassword`, but for initial password setup for - `enrollAccount`: Same as `resetPassword`, but for initial password setup for
new accounts. new accounts.
@@ -151,4 +151,4 @@ Accounts.emailTemplates.enrollAccount.text = function (user, url) {
}; };
``` ```
{{/template}} {{/template}}