コンテンツへスキップ
メニュー
この質問にフラグが付けられました
3 返信
3862 ビュー
                    

Hello Community,

I want to send survey email with partner name for this i have override survey email template but its module is survey_survey. So how can i send email to partner with his name

Thanks in advance.



Survey - Send by Email



Hello ${name of partner},


We are conducting a survey, and your response would be appreciated.


Please, click here to start survey


Thanks for your participation!


]]>




                
アバター
破棄
著作者 最善の回答

problem solved. 

{'body_html': wizard.body.replace("__URL__", url).replace("partner_name", partner_name.name)}

Thanks

アバター
破棄
最善の回答

Hi,

In higher versions like odoo14, it seems available by default. In odoo11, you can the get the partner name as follows: 

Dear ${object.partner_id.name or 'participant'}


Thanks

アバター
破棄
著作者

Hi Niyas, Thanks for your reply. i am already tried this and getting "UndefinedError: 'odoo.api.survey.survey object' has no attribute 'partner_id'" due to unavailability partner in survey model.

if so, can you check how it is implemented in the latest versions

著作者

problem solved.

{'body_html': wizard.body.replace("__URL__", url).replace("partner_name", partner_name.name)}

Thanks

最善の回答

Hi Pawan,

    Instead of overriding create a new email template with model _id as "model_survey_user_input".

In the new template add these in the body

Hello ${object.partner_id.name or 'participant'},
We are conducting a survey, and your response would be appreciated.
Please, click here to start survey( add this in the href "${(object.action_survey_resend()) | safe}"

Thanks for your participation!

Hope this helps

Regards

アバター
破棄
関連投稿 返信 ビュー 活動
0
9月 21
2010
0
12月 21
2637
1
11月 22
3289
2
8月 22
7613
1
1月 25
9317