mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
19 lines
No EOL
315 B
JavaScript
19 lines
No EOL
315 B
JavaScript
import VulcanEmail from 'meteor/vulcan:email';
|
|
|
|
VulcanEmail.addEmails({
|
|
|
|
test: {
|
|
template: "test",
|
|
path: "/email/test",
|
|
getProperties() {
|
|
return {date: new Date()};
|
|
},
|
|
subject() {
|
|
return "This is a test";
|
|
},
|
|
getTestObject() {
|
|
return {date: new Date()};
|
|
}
|
|
}
|
|
|
|
}); |