mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
21 lines
No EOL
410 B
JavaScript
21 lines
No EOL
410 B
JavaScript
// email test routes (make available to client & server)
|
|
|
|
Telescope.email.addEmails({
|
|
|
|
newsletter: {
|
|
template: "newsletter",
|
|
path: "/email/newsletter",
|
|
subject() {
|
|
return "[Generated on server]";
|
|
}
|
|
},
|
|
|
|
newsletterConfirmation: {
|
|
template: "newsletterConfirmation",
|
|
path: "/email/newsletter-confirmation",
|
|
subject() {
|
|
return "Newsletter confirmation";
|
|
}
|
|
}
|
|
|
|
}); |