Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1155 มุมมอง

Im currently working on auto sending sign request and this is my current code


template_id = payload.get('template_id')
partner_id = payload.get('partner_id')
role_id = 1  # Assuming role_id as 1 by default
mail_order = 1
subject = payload.get('subject')
filename = payload.get('filename')

# Ensure the template exist
template = env['sign.template'].browse(template_id)

if template.exists():

    sign_request = env['sign.request'].create({
        'template_id': template.id, 
        'reference': filename,
    })
   
    # Send the sign request email
    sign_request.send_request()


This is being triggered via webhook. In other side where it trigger this using webhook, the odoo seems to return 'ok', but the email is not being sent.


I already check my email system and its working so I suspect the problem is in this side (i dont even know what email it will be sent).


 There something wrong with this code. How can I fix it?

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ก.พ. 22
4616
1
เม.ย. 25
4103
2
พ.ค. 16
10721
0
พ.ย. 24
1323
4
ส.ค. 24
8505