How to send email to a candidate on Application Refuse button click and link it to server action?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
2117
Lượt xem
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 11 21
|
2311 | ||
|
1
thg 7 25
|
2405 | ||
|
2
thg 7 25
|
7890 | ||
|
2
thg 7 25
|
4300 | ||
|
2
thg 7 25
|
4037 |
How can I link these two?
<record id="action_refuse_applicants" model="ir.actions.server">
<field name="name">Milti refuse Applicants</field>
<field name="model_id" ref="model_hr_applicant"/>
<field name="binding_model_id" ref="model_hr_applicant"/>
<field name="state">code</field>
<field name="code">records.archive_applicant()</field>
</record>
Email Template
<record id="job_applicant_email_template" model="mail.template">
<field name="name">Job refusal: Send by email</field>
<field name="model_id" ref="hr_recruitment_customizations_sanargy.model_hr_applicant"/>
<field name="email_from">${object.user_id.email_formatted |safe}</field>
<field name="email_to">${object.email_id}</field>
<field name="subject">Applied Job: (Ref ${object.job_id})</field>
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px;">
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Dear ${object.partner_name}
<br /><br />
We appreciate your interest in ${object.company_id} and the time you’ve invested
in applying for the ${object.job_id} opening.
<br /><br />
We ended up moving forward with another candidate, but we’d like to thank you for talking
to our team and giving us the opportunity to learn about your skills and accomplishments.
<br /><br />
We will be advertising more positions in the coming months.
We hope you’ll keep us in mind and we encourage you to apply again.
<br /><br />
We wish you good luck with your job search and professional future endeavors.
<br /><br />
Best,
${object.user_id}
</p>
</div>
</field>
</record>