Trung Tran
Trung Tran

Reputation: 13721

Email template for mailgun + node.js

I'm building an app using node.js + express and using mailgun as my email service. I wanted to check if anyone knows how to make templates that I could use in the email body?

Thanks in advance!

Upvotes: 1

Views: 1489

Answers (1)

yeiniel
yeiniel

Reputation: 2456

I create my mail messages from templates inside an express application using the render method of the express application. This way i keep my mail templates inside the application template hierarchy and can use the same template engine and re-usability patterns. Currently my express application use Jade as template engine.

Upvotes: 1

Related Questions