Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
7173 Prikazi

I need to pass `objects` to `email_template` from python code:


***.py**


    def _alert_product_expiry(self):

        alert_data = self.search([('alert_date','=',fields.Date.today())])

        if alert_data:

            template_id = self.env.ref('alert_email_template')// Need to pass `alert_data` to template

            send = template_id.send_mail(self.id, force_send=True)



**template_body**


      <field name="body_html">

            <![CDATA[

           //Retrieve that object here and perform for loop. I don't know how retrieve it.

    ]]>


   </field>


How can i do it?

Avatar
Opusti
Best Answer

In your model of template make a field alert data and update on Python function. on XML templates access it from the object.

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
1
feb. 18
2606
2
okt. 17
6087
1
jun. 17
4484
0
mar. 21
2630
1
dec. 23
9151