mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
19 lines
309 B
JavaScript
19 lines
309 B
JavaScript
![]() |
import NovaEmail from 'meteor/nova:email';
|
||
|
|
||
|
NovaEmail.addEmails({
|
||
|
|
||
|
test: {
|
||
|
template: "test",
|
||
|
path: "/email/test",
|
||
|
getProperties() {
|
||
|
return {date: new Date()};
|
||
|
},
|
||
|
subject() {
|
||
|
return "This is a test";
|
||
|
},
|
||
|
getTestObject() {
|
||
|
return {date: new Date()};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
});
|