Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
2117c2f5d9 | |||
ca0daf2454 | |||
ad6d18d306 | |||
7ddcd88862 | |||
9d6b7f3b29 | |||
8be9fc38b6 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartmail",
|
"name": "@pushrocks/smartmail",
|
||||||
"version": "1.0.9",
|
"version": "1.0.12",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@pushrocks/smartmail",
|
"name": "@pushrocks/smartmail",
|
||||||
"version": "1.0.9",
|
"version": "1.0.12",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a unified format for representing and dealing with mails",
|
"description": "a unified format for representing and dealing with mails",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -8,7 +8,7 @@ a unified format for representing and dealing with mails
|
|||||||
* [docs (typedoc)](https://pushrocks.gitlab.io/smartmail/)
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartmail/)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
[](https://gitlab.com/pushrocks/smartmail/commits/master)
|
[](https://gitlab.com/pushrocks/smartmail/commits/master)
|
||||||
[](https://gitlab.com/pushrocks/smartmail/commits/master)
|
[](https://gitlab.com/pushrocks/smartmail/commits/master)
|
||||||
[](https://www.npmjs.com/package/@pushrocks/smartmail)
|
[](https://www.npmjs.com/package/@pushrocks/smartmail)
|
||||||
[](https://snyk.io/test/npm/@pushrocks/smartmail)
|
[](https://snyk.io/test/npm/@pushrocks/smartmail)
|
||||||
@ -18,6 +18,10 @@ a unified format for representing and dealing with mails
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
## Contribution
|
||||||
|
|
||||||
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
|
@ -22,6 +22,10 @@ export class Smartmail<T> {
|
|||||||
this.attachments.push(smartfileArg);
|
this.attachments.push(smartfileArg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getCreationObject(): T {
|
||||||
|
return this.options.creationObjectRef;
|
||||||
|
}
|
||||||
|
|
||||||
public getSubject(dataArg: any = {}) {
|
public getSubject(dataArg: any = {}) {
|
||||||
const smartmustache = new plugins.smartmustache.SmartMustache(this.options.subject);
|
const smartmustache = new plugins.smartmustache.SmartMustache(this.options.subject);
|
||||||
return smartmustache.applyData(dataArg);
|
return smartmustache.applyData(dataArg);
|
||||||
|
Reference in New Issue
Block a user