Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 543
Shahbour Avatar asked Sep 10 '26 21:09

Shahbour


1 Answers

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.

like image 121
ben3000 Avatar answered Sep 13 '26 01:09

ben3000