Sending emails using the QWeb template
In the previous recipe, we learned how to send emails using the Jinja template. In this recipe, we will see another way to send dynamic emails. We will send emails with the help of the QWeb template.
Getting ready
For this recipe, we will use the my_hostel
module from the previous recipe, Sending emails using the Jinja template. We will use the QWeb template to send an email to the student informing them that their admission was completed in the hostel.
How to do it...
Follow these steps to send a reminder email to the student:
- Add the QWeb template into the
my_hostel/data/mail_template.xml
file:   <template id="assign_room_to_student_qweb">        <p>Dear <span t-field="object.name"/>,</p>        <br/>        <p>You have been assigned hostel  &...