Shahbour
Shahbour

Reputation: 1323

Spring Boot 1.4 VelocityEngineUtils deprecated

i just updated to spring boot 1.4 and noticed that VelocityEngineUtils is deprecated. I am using Velocity Templates to send emails same as in spring framework example

What are the alternative for sending emails templates other than Velocity template

Upvotes: 3

Views: 3750

Answers (1)

ben3000
ben3000

Reputation: 5029

Thymeleaf is a pretty powerful replacement.

Thymeleaf will do text or html email (see the link above), is already a recommended templating framework for general HTML use, and Velocity is itself deprecated in the same section of the documentation.

Upvotes: 1

Related Questions