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
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
2104
Vues
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
0
nov. 21
|
2303 | ||
|
1
juil. 25
|
2391 | ||
|
2
juil. 25
|
7886 | ||
|
2
juil. 25
|
4292 | ||
|
2
juil. 25
|
4030 |
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>