Skip to content

Commit 3ca0b2a

Browse files
committed
Merge pull request #2 from carlosbaraza/master
Bring branch to master HEAD and Fix CSS
2 parents 5c871ee + 5044bac commit 3ca0b2a

File tree

13 files changed

+232
-146
lines changed

13 files changed

+232
-146
lines changed

Diff for: .eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
example/.meteor
2+
node_modules

Diff for: .eslintrc

+3-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,5 @@
11
{
2-
"extends": "eslint:recommended",
3-
"rules": {
4-
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
5-
"strict": 0,
6-
"quotes": [2, "single"],
7-
"no-underscore-dangle": 0,
8-
"curly": 0,
9-
"no-unused-vars": 1,
10-
"no-console": 0,
11-
"no-var": 2
12-
},
13-
14-
"env": {
15-
"node": true,
16-
"meteor": true,
17-
"es6": true
18-
},
2+
"extends": "lookback/meteor",
193

204
"globals": {
215
"Mailer": true,
@@ -26,6 +10,7 @@
2610
"TemplateHelpers": true,
2711
"SSR": false,
2812
"Picker": false,
29-
"Routing": true
13+
"Routing": true,
14+
"Templates": true
3015
}
3116
}

Diff for: .gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
.DS_Store
22
.sass-cache/
33
.npm/
4+
example/settings.json
5+
npm-debug.log
6+
node_modules

Diff for: .versions

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,66 @@
1+
12
23
34
5+
46
57
68
79
10+
11+
812
913
14+
15+
16+
17+
1018
1119
1220
1321
1422
1523
24+
1625
1726
27+
1828
1929
30+
local-test:lookback:[email protected]
2031
21-
32+
2233
2334
meteorhacks:[email protected]
2435
meteorhacks:[email protected]
36+
37+
38+
2539
40+
2641
42+
43+
practicalmeteor:[email protected]_1
44+
practicalmeteor:[email protected]_2
45+
practicalmeteor:[email protected]_7
46+
practicalmeteor:[email protected]
47+
practicalmeteor:[email protected]_2
2748
2849
50+
2951
52+
53+
3054
3155
56+
3257
3358
59+
60+
3461
3562
3663
64+
3765
3866

Diff for: README.md

+19
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ Please inspect the provided sample code for details.
110110
template: 'templateName', // Required.
111111
replyTo: 'Name <[email protected]>', // Override global 'ReplyTo: ' option.
112112
from: 'Name <[email protected]>', // Override global 'From: ' option.
113+
cc: 'Name <[email protected]>', // Optional.
114+
bcc: 'Name <[email protected]>', // Optional.
113115
data: {} // Optional. Render your email with a data object.
114116
}
115117
```
@@ -470,6 +472,7 @@ Why not try [`meteor-logger`](https://github.com/lookback/meteor-logger)? :)
470472

471473
## Version history
472474

475+
- `0.7.2` - Support `cc` and `bcc` options to `Mailer.send()`. Filed in [#52](https://github.com/lookback/meteor-emails/issues/52), fixed in [#54](https://github.com/lookback/meteor-emails/pull/54).
473476
- `0.7.1` - Check for existence of `Blaze` global before extending with registered Blaze helpers.
474477
- `0.7.0` - Replaced Iron Router dependency with `meteorhacks:picker`, which means you can now use this package with FlowRouter as well.
475478

@@ -521,6 +524,22 @@ route: {
521524

522525
PRs and help is welcomed.
523526

527+
## Develop
528+
529+
Clone repo, and run:
530+
531+
```
532+
npm install
533+
```
534+
535+
to install dev dev dependencies. We're using ESLint for linting.
536+
537+
## Things to do
538+
539+
- [ ] Tests.
540+
541+
Also see [open issues](https://github.com/lookback/meteor-emails/issues).
542+
524543
***
525544

526545
Made by [Lookback](http://github.com/lookback)

0 commit comments

Comments
 (0)